diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:38:18 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:38:18 +0000 |
| commit | 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (patch) | |
| tree | e1c3b20ea08f0cf71122a1e73f0d395f8fd83874 /Codemerx/Gestor.Model/Model.Domain.Relatorios/Filtros.cs | |
| parent | 674ca83ba9243a9e95a7568c797668dab6aee26a (diff) | |
| download | gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.tar.gz gestor-1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1.zip | |
chore: location
Diffstat (limited to 'Codemerx/Gestor.Model/Model.Domain.Relatorios/Filtros.cs')
| -rw-r--r-- | Codemerx/Gestor.Model/Model.Domain.Relatorios/Filtros.cs | 138 |
1 files changed, 138 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.Domain.Relatorios/Filtros.cs b/Codemerx/Gestor.Model/Model.Domain.Relatorios/Filtros.cs new file mode 100644 index 0000000..ef24f44 --- /dev/null +++ b/Codemerx/Gestor.Model/Model.Domain.Relatorios/Filtros.cs @@ -0,0 +1,138 @@ +using System;
+using System.Collections.Generic;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.Domain.Relatorios
+{
+ public class Filtros : ICloneable
+ {
+ public List<long> Estipulantes
+ {
+ get;
+ set;
+ }
+
+ public string FiltrarDocumento
+ {
+ get;
+ set;
+ }
+
+ public DateTime Fim
+ {
+ get;
+ set;
+ }
+
+ public long IdEmpresa
+ {
+ get;
+ set;
+ }
+
+ public DateTime Inicio
+ {
+ get;
+ set;
+ }
+
+ public List<long> Negocio
+ {
+ get;
+ set;
+ }
+
+ public List<FiltroTipoParcela> ParcelasEspeciais
+ {
+ get;
+ set;
+ }
+
+ public List<long> Produtos
+ {
+ get;
+ set;
+ }
+
+ public List<long> Ramos
+ {
+ get;
+ set;
+ }
+
+ public string Referencia
+ {
+ get;
+ set;
+ }
+
+ public List<long> Relatorios
+ {
+ get;
+ set;
+ }
+
+ public List<long> Seguradoras
+ {
+ get;
+ set;
+ }
+
+ public List<long> Status
+ {
+ get;
+ set;
+ }
+
+ public List<long> Telas
+ {
+ get;
+ set;
+ }
+
+ public List<long> TipoVendedor
+ {
+ get;
+ set;
+ }
+
+ public List<long> Usuarios
+ {
+ get;
+ set;
+ }
+
+ public int ValorFim
+ {
+ get;
+ set;
+ }
+
+ public int ValorInicio
+ {
+ get;
+ set;
+ }
+
+ public List<long> Vendedores
+ {
+ get;
+ set;
+ }
+
+ public List<long> VinculoVendedores
+ {
+ get;
+ set;
+ }
+
+ public Filtros()
+ {
+ }
+
+ public object Clone()
+ {
+ return (Filtros)this.MemberwiseClone();
+ }
+ }
+}
\ No newline at end of file |