summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Relatorios/Filtros.cs
blob: 2242c915efde907b346c7f9fb1ebe65c4e77bfd5 (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
using System;
using System.Collections.Generic;

namespace Gestor.Model.Domain.Relatorios;

public class Filtros : ICloneable
{
	public DateTime Inicio { get; set; }

	public DateTime Fim { get; set; }

	public int ValorInicio { get; set; }

	public int ValorFim { get; set; }

	public long IdEmpresa { get; set; }

	public List<long> Seguradoras { get; set; }

	public List<long> Ramos { get; set; }

	public List<long> Status { get; set; }

	public List<long> Vendedores { get; set; }

	public List<long> VinculoVendedores { get; set; }

	public List<long> TipoVendedor { get; set; }

	public List<long> Estipulantes { get; set; }

	public List<long> Produtos { get; set; }

	public List<long> Negocio { get; set; }

	public List<long> Usuarios { get; set; }

	public List<long> Telas { get; set; }

	public List<long> Relatorios { get; set; }

	public string Referencia { get; set; }

	public List<FiltroTipoParcela> ParcelasEspeciais { get; set; }

	public string FiltrarDocumento { get; set; }

	public object Clone()
	{
		return (Filtros)MemberwiseClone();
	}
}