diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 15:29:41 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 15:29:41 +0000 |
| commit | 225aa1499e37faf9d38257caabbadc68d78b427e (patch) | |
| tree | 102bb7a40c58595348ae9d3c7076201759fe0720 /Decompiler/Gestor.Application.Actions/Actions.cs | |
| parent | 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (diff) | |
| download | gestor-225aa1499e37faf9d38257caabbadc68d78b427e.tar.gz gestor-225aa1499e37faf9d38257caabbadc68d78b427e.zip | |
decompiler.com
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; } +} |