diff options
Diffstat (limited to 'Decompiler/Gestor.Application.Actions/Actions.cs')
| -rw-r--r-- | Decompiler/Gestor.Application.Actions/Actions.cs | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/Decompiler/Gestor.Application.Actions/Actions.cs b/Decompiler/Gestor.Application.Actions/Actions.cs new file mode 100644 index 0000000..bc521cc --- /dev/null +++ b/Decompiler/Gestor.Application.Actions/Actions.cs @@ -0,0 +1,80 @@ +using System; +using System.Windows; +using Assinador.Model.Common; +using Gestor.Model.Common; +using Gestor.Model.Domain.Seguros; + +namespace Gestor.Application.Actions; + +public static class Actions +{ + public static Action<double, double, WindowState, double> Resize { get; set; } + + public static Action<string> NomeTela { get; set; } + + public static Action<TipoTela, string> AcessaTela { get; set; } + + public static Action<bool> EnableMainMenu { get; set; } + + public static Action<bool> EnablePesquisarClientes { get; set; } + + public static Action<bool> EnableMenu { get; set; } + + public static Action<Documento> RecarregarDocumentos { get; set; } + + public static Action<Documento> RecarregarParcelas { get; set; } + + public static Action<Documento> UpdateDocumento { get; set; } + + public static Action ScrollDocumento { get; set; } + + public static Action<Item> UpdateItem { get; set; } + + public static Action<Cliente> SelectCliente { get; set; } + + public static Action LimparCliente { get; set; } + + public static Action<Item> SubstituirItem { get; set; } + + public static Action<Item, ManutencaoItem> ManterItem { get; set; } + + public static Action<AcessoApolice> AcessoApolice { get; set; } + + public static Action<bool> EnableItens { get; set; } + + public static Action<bool> EnableDocumento { get; set; } + + public static Action OcultarTogglesArquivoDigital { get; set; } + + public static Action OcultarTogglesFerramentas { get; set; } + + public static Action OcultarTogglesSeguros { get; set; } + + public static Action AtualizaBadges { get; set; } + + public static Action AtualizaContatos { get; set; } + + public static Action AtualizaTrilhas { get; set; } + + public static Action CloseHoster { get; set; } + + public static Action<int> UpdateRadioApolice { get; set; } + + public static Action SortLancamentos { get; set; } + + public static Action SaveSortLancamentos { get; set; } + + public static Action<bool> Redimencionar { get; set; } + + public static Action<PipeMessageResult> AcessarHoster { get; set; } + + public static Action<string> AcionarSnackbar { get; set; } + + public static Action<string> RecarregarRelatorios { get; set; } + + public static Action ScrollToItem { get; set; } + + public static Action IniciarAggilizador { get; set; } + + public static Action AtualizaUsuario { get; set; } +} |