diff options
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPatrimonialRepository.cs')
| -rw-r--r-- | Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPatrimonialRepository.cs | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPatrimonialRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPatrimonialRepository.cs deleted file mode 100644 index 318f5a8..0000000 --- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPatrimonialRepository.cs +++ /dev/null @@ -1,29 +0,0 @@ -using Gestor.Infrastructure.Entities.Seguros;
-using Gestor.Infrastructure.Repository.Generic;
-using Gestor.Model.Common;
-using Gestor.Model.Domain.Common;
-using Gestor.Model.Domain.Seguros;
-using System;
-using System.Collections.Generic;
-
-namespace Gestor.Infrastructure.Repository.Interface
-{
- public interface IPatrimonialRepository : IGenericRepository<PatrimonialDb>
- {
- void Delete(long id);
-
- void DeleteRange(List<long> ids);
-
- Patrimonial Find(long id);
-
- Patrimonial FindById(long id);
-
- List<PesquisaAvancada> FindImobiliaria(string imobiliaria, FiltroStatusDocumento status, List<VendedorUsuario> vendedorVinculado);
-
- List<PesquisaAvancada> Findlocatario(string imobiliaria, FiltroStatusDocumento status, List<VendedorUsuario> vendedorVinculado);
-
- Patrimonial Merge(Patrimonial patrimonial);
-
- Patrimonial SaveOrUpdate(Patrimonial patrimonial);
- }
-}
\ No newline at end of file |