diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:38:18 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:38:18 +0000 |
| commit | 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (patch) | |
| tree | e1c3b20ea08f0cf71122a1e73f0d395f8fd83874 /Codemerx/Gestor.Application/Actions | |
| parent | 674ca83ba9243a9e95a7568c797668dab6aee26a (diff) | |
| download | gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip | |
chore: location
Diffstat (limited to 'Codemerx/Gestor.Application/Actions')
| -rw-r--r-- | Codemerx/Gestor.Application/Actions/Actions.cs | 222 |
1 files changed, 222 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Application/Actions/Actions.cs b/Codemerx/Gestor.Application/Actions/Actions.cs new file mode 100644 index 0000000..2d3a5a2 --- /dev/null +++ b/Codemerx/Gestor.Application/Actions/Actions.cs @@ -0,0 +1,222 @@ +using Assinador.Model.Common;
+using Gestor.Model.Common;
+using Gestor.Model.Domain.Seguros;
+using System;
+using System.Runtime.CompilerServices;
+using System.Windows;
+
+namespace Gestor.Application.Actions
+{
+ public static class Actions
+ {
+ public static Action<PipeMessageResult> AcessarHoster
+ {
+ get;
+ set;
+ }
+
+ public static Action<TipoTela, string> AcessaTela
+ {
+ get;
+ set;
+ }
+
+ public static Action<Gestor.Model.Common.AcessoApolice> AcessoApolice
+ {
+ get;
+ set;
+ }
+
+ public static Action<string> AcionarSnackbar
+ {
+ get;
+ set;
+ }
+
+ public static Action AtualizaBadges
+ {
+ get;
+ set;
+ }
+
+ public static Action AtualizaContatos
+ {
+ get;
+ set;
+ }
+
+ public static Action AtualizaTrilhas
+ {
+ get;
+ set;
+ }
+
+ public static Action AtualizaUsuario
+ {
+ get;
+ set;
+ }
+
+ public static Action CloseHoster
+ {
+ get;
+ set;
+ }
+
+ public static Action<bool> EnableDocumento
+ {
+ get;
+ set;
+ }
+
+ public static Action<bool> EnableItens
+ {
+ get;
+ set;
+ }
+
+ public static Action<bool> EnableMainMenu
+ {
+ get;
+ set;
+ }
+
+ public static Action<bool> EnableMenu
+ {
+ get;
+ set;
+ }
+
+ public static Action<bool> EnablePesquisarClientes
+ {
+ get;
+ set;
+ }
+
+ public static Action IniciarAggilizador
+ {
+ get;
+ set;
+ }
+
+ public static Action LimparCliente
+ {
+ get;
+ set;
+ }
+
+ public static Action<Item, ManutencaoItem> ManterItem
+ {
+ get;
+ set;
+ }
+
+ public static Action<string> NomeTela
+ {
+ get;
+ set;
+ }
+
+ public static Action OcultarTogglesArquivoDigital
+ {
+ get;
+ set;
+ }
+
+ public static Action OcultarTogglesFerramentas
+ {
+ get;
+ set;
+ }
+
+ public static Action OcultarTogglesSeguros
+ {
+ get;
+ set;
+ }
+
+ public static Action<Documento> RecarregarDocumentos
+ {
+ get;
+ set;
+ }
+
+ public static Action<Documento> RecarregarParcelas
+ {
+ get;
+ set;
+ }
+
+ public static Action<string> RecarregarRelatorios
+ {
+ get;
+ set;
+ }
+
+ public static Action<bool> Redimencionar
+ {
+ get;
+ set;
+ }
+
+ public static Action<double, double, WindowState, double> Resize
+ {
+ get;
+ set;
+ }
+
+ public static Action SaveSortLancamentos
+ {
+ get;
+ set;
+ }
+
+ public static Action ScrollDocumento
+ {
+ get;
+ set;
+ }
+
+ public static Action ScrollToItem
+ {
+ get;
+ set;
+ }
+
+ public static Action<Cliente> SelectCliente
+ {
+ get;
+ set;
+ }
+
+ public static Action SortLancamentos
+ {
+ get;
+ set;
+ }
+
+ public static Action<Item> SubstituirItem
+ {
+ get;
+ set;
+ }
+
+ public static Action<Documento> UpdateDocumento
+ {
+ get;
+ set;
+ }
+
+ public static Action<Item> UpdateItem
+ {
+ get;
+ set;
+ }
+
+ public static Action<int> UpdateRadioApolice
+ {
+ get;
+ set;
+ }
+ }
+}
\ No newline at end of file |