blob: bc521ccf8bd7e5ae78fa813e8a79d83d6089de91 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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; }
}
|