summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Application/Helpers/Recursos.cs
blob: 8800d5382b4ee55c999918abc9e9ab741cae8c52 (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
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();
		}
	}
}