From 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 Mon Sep 17 00:00:00 2001 From: Lucas Faria Mendes Date: Mon, 30 Mar 2026 10:38:18 -0300 Subject: chore: location --- Gestor.Model/Model.Domain.Relatorios/Filtros.cs | 138 ------------------------ 1 file changed, 138 deletions(-) delete mode 100644 Gestor.Model/Model.Domain.Relatorios/Filtros.cs (limited to 'Gestor.Model/Model.Domain.Relatorios/Filtros.cs') diff --git a/Gestor.Model/Model.Domain.Relatorios/Filtros.cs b/Gestor.Model/Model.Domain.Relatorios/Filtros.cs deleted file mode 100644 index ef24f44..0000000 --- a/Gestor.Model/Model.Domain.Relatorios/Filtros.cs +++ /dev/null @@ -1,138 +0,0 @@ -using System; -using System.Collections.Generic; -using System.Runtime.CompilerServices; - -namespace Gestor.Model.Domain.Relatorios -{ - public class Filtros : ICloneable - { - public List 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 Negocio - { - get; - set; - } - - public List ParcelasEspeciais - { - get; - set; - } - - public List Produtos - { - get; - set; - } - - public List Ramos - { - get; - set; - } - - public string Referencia - { - get; - set; - } - - public List Relatorios - { - get; - set; - } - - public List Seguradoras - { - get; - set; - } - - public List Status - { - get; - set; - } - - public List Telas - { - get; - set; - } - - public List TipoVendedor - { - get; - set; - } - - public List Usuarios - { - get; - set; - } - - public int ValorFim - { - get; - set; - } - - public int ValorInicio - { - get; - set; - } - - public List Vendedores - { - get; - set; - } - - public List VinculoVendedores - { - get; - set; - } - - public Filtros() - { - } - - public object Clone() - { - return (Filtros)this.MemberwiseClone(); - } - } -} \ No newline at end of file -- cgit v1.2.3