From 674ca83ba9243a9e95a7568c797668dab6aee26a Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 10:35:25 -0300 Subject: feat: upload files --- Gestor.Application/Actions/Actions.cs | 222 ++++++++++++++++++++++++++++++++++ 1 file changed, 222 insertions(+) create mode 100644 Gestor.Application/Actions/Actions.cs (limited to 'Gestor.Application/Actions') 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 AcessarHoster + { + get; + set; + } + + public static Action AcessaTela + { + get; + set; + } + + public static Action AcessoApolice + { + get; + set; + } + + public static Action 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 EnableDocumento + { + get; + set; + } + + public static Action EnableItens + { + get; + set; + } + + public static Action EnableMainMenu + { + get; + set; + } + + public static Action EnableMenu + { + get; + set; + } + + public static Action EnablePesquisarClientes + { + get; + set; + } + + public static Action IniciarAggilizador + { + get; + set; + } + + public static Action LimparCliente + { + get; + set; + } + + public static Action ManterItem + { + get; + set; + } + + public static Action NomeTela + { + get; + set; + } + + public static Action OcultarTogglesArquivoDigital + { + get; + set; + } + + public static Action OcultarTogglesFerramentas + { + get; + set; + } + + public static Action OcultarTogglesSeguros + { + get; + set; + } + + public static Action RecarregarDocumentos + { + get; + set; + } + + public static Action RecarregarParcelas + { + get; + set; + } + + public static Action RecarregarRelatorios + { + get; + set; + } + + public static Action Redimencionar + { + get; + set; + } + + public static Action Resize + { + get; + set; + } + + public static Action SaveSortLancamentos + { + get; + set; + } + + public static Action ScrollDocumento + { + get; + set; + } + + public static Action ScrollToItem + { + get; + set; + } + + public static Action SelectCliente + { + get; + set; + } + + public static Action SortLancamentos + { + get; + set; + } + + public static Action SubstituirItem + { + get; + set; + } + + public static Action UpdateDocumento + { + get; + set; + } + + public static Action UpdateItem + { + get; + set; + } + + public static Action UpdateRadioApolice + { + get; + set; + } + } +} \ No newline at end of file -- cgit v1.2.3