diff options
Diffstat (limited to 'Gestor.Model/Model.Domain.Relatorios/Filtros.cs')
| -rw-r--r-- | Gestor.Model/Model.Domain.Relatorios/Filtros.cs | 138 |
1 files changed, 138 insertions, 0 deletions
diff --git a/Gestor.Model/Model.Domain.Relatorios/Filtros.cs b/Gestor.Model/Model.Domain.Relatorios/Filtros.cs new file mode 100644 index 0000000..ef24f44 --- /dev/null +++ b/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 |