diff options
Diffstat (limited to 'Gestor.Application/Actions')
| -rw-r--r-- | Gestor.Application/Actions/Actions.cs | 222 |
1 files changed, 222 insertions, 0 deletions
diff --git a/Gestor.Application/Actions/Actions.cs b/Gestor.Application/Actions/Actions.cs new file mode 100644 index 0000000..2d3a5a2 --- /dev/null +++ b/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 |