summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Application/Helpers/Recursos.cs
diff options
context:
space:
mode:
authorLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
committerLucas Faria Mendes <lucas.fariamo08@gmail.com>2026-03-30 13:38:18 +0000
commit1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (patch)
treee1c3b20ea08f0cf71122a1e73f0d395f8fd83874 /Codemerx/Gestor.Application/Helpers/Recursos.cs
parent674ca83ba9243a9e95a7568c797668dab6aee26a (diff)
downloadgestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz
gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip
chore: location
Diffstat (limited to 'Codemerx/Gestor.Application/Helpers/Recursos.cs')
-rw-r--r--Codemerx/Gestor.Application/Helpers/Recursos.cs170
1 files changed, 170 insertions, 0 deletions
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<Gestor.Model.Domain.Financeiro.BancosContas> BancosContas
+ {
+ get;
+ set;
+ }
+
+ public static List<CoberturaPadrao> Coberturas
+ {
+ get;
+ set;
+ }
+
+ public static List<ConfiguracaoSistema> Configuracoes
+ {
+ get;
+ set;
+ }
+
+ public static List<ConfigExtratoImport> Descricao
+ {
+ get;
+ set;
+ }
+
+ public static Gestor.Model.Domain.Common.Empresa Empresa
+ {
+ get;
+ set;
+ }
+
+ public static List<Gestor.Model.Domain.Common.Empresa> Empresas
+ {
+ get;
+ set;
+ }
+
+ public static List<Estipulante> Estipulantes
+ {
+ get;
+ set;
+ }
+
+ public static List<Fabricante> Fabricantes
+ {
+ get;
+ set;
+ }
+
+ public static IPHostEntry Host
+ {
+ get;
+ set;
+ }
+
+ public static List<string> Parametros
+ {
+ get;
+ set;
+ }
+
+ public static List<Parceiro> Parceiros
+ {
+ get;
+ set;
+ }
+
+ public static List<Produto> Produtos
+ {
+ get;
+ set;
+ }
+
+ public static List<Ramo> Ramos
+ {
+ get;
+ set;
+ }
+
+ public static string Registrar
+ {
+ get;
+ set;
+ }
+
+ public static List<Seguradora> Seguradoras
+ {
+ get;
+ set;
+ }
+
+ public static List<Gestor.Model.Domain.Seguros.Status> Status
+ {
+ get;
+ set;
+ }
+
+ public static List<StatusDeProspeccao> StatusProspeccao
+ {
+ get;
+ set;
+ }
+
+ public static List<TipoDeTarefa> TiposTarefa
+ {
+ get;
+ set;
+ }
+
+ public static List<Gestor.Model.Domain.Seguros.TipoVendedor> TipoVendedor
+ {
+ get;
+ set;
+ }
+
+ public static Gestor.Model.Domain.Seguros.Usuario Usuario
+ {
+ get;
+ set;
+ }
+
+ public static List<Gestor.Model.Domain.Seguros.Usuario> Usuarios
+ {
+ get;
+ set;
+ }
+
+ public static List<Vendedor> 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