From 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 10:38:18 -0300 Subject: chore: location --- Codemerx/Gestor.Application/Helpers/Recursos.cs | 170 ++++++++++++++++++++++++ 1 file changed, 170 insertions(+) create mode 100644 Codemerx/Gestor.Application/Helpers/Recursos.cs (limited to 'Codemerx/Gestor.Application/Helpers/Recursos.cs') diff --git a/Codemerx/Gestor.Application/Helpers/Recursos.cs b/Codemerx/Gestor.Application/Helpers/Recursos.cs new file mode 100644 index 0000000..8800d53 --- /dev/null +++ b/Codemerx/Gestor.Application/Helpers/Recursos.cs @@ -0,0 +1,170 @@ +using Agger.Registro; +using Gestor.Model.Domain.Common; +using Gestor.Model.Domain.Configuracoes; +using Gestor.Model.Domain.Ferramentas; +using Gestor.Model.Domain.Financeiro; +using Gestor.Model.Domain.Seguros; +using System; +using System.Collections.Generic; +using System.Net; +using System.Runtime.CompilerServices; + +namespace Gestor.Application.Helpers +{ + public static class Recursos + { + public const string AppStore = "https://apps.apple.com/br/app/agger-mobile/id1463091598"; + + public const string PlayStore = "https://play.google.com/store/apps/details?id=br.com.aggermobile&hl=pt&gl=US"; + + public const int DefaultMaxSize = 14336; + + public static Uri ApiArquivo + { + get; + } + + public static List BancosContas + { + get; + set; + } + + public static List Coberturas + { + get; + set; + } + + public static List Configuracoes + { + get; + set; + } + + public static List Descricao + { + get; + set; + } + + public static Gestor.Model.Domain.Common.Empresa Empresa + { + get; + set; + } + + public static List Empresas + { + get; + set; + } + + public static List Estipulantes + { + get; + set; + } + + public static List Fabricantes + { + get; + set; + } + + public static IPHostEntry Host + { + get; + set; + } + + public static List Parametros + { + get; + set; + } + + public static List Parceiros + { + get; + set; + } + + public static List Produtos + { + get; + set; + } + + public static List Ramos + { + get; + set; + } + + public static string Registrar + { + get; + set; + } + + public static List Seguradoras + { + get; + set; + } + + public static List Status + { + get; + set; + } + + public static List StatusProspeccao + { + get; + set; + } + + public static List TiposTarefa + { + get; + set; + } + + public static List TipoVendedor + { + get; + set; + } + + public static Gestor.Model.Domain.Seguros.Usuario Usuario + { + get; + set; + } + + public static List Usuarios + { + get; + set; + } + + public static List Vendedores + { + get; + set; + } + + public static Uri WhatsAppLink + { + get; + } + + static Recursos() + { + Recursos.WhatsAppLink = new Uri("https://api.whatsapp.com/send?"); + Recursos.ApiArquivo = Address.get_ApiArquivo(); + } + } +} \ No newline at end of file -- cgit v1.2.3