summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfigExtratoImportRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfigExtratoImportRepository.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfigExtratoImportRepository.cs27
1 files changed, 0 insertions, 27 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfigExtratoImportRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfigExtratoImportRepository.cs
deleted file mode 100644
index c1bf651..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfigExtratoImportRepository.cs
+++ /dev/null
@@ -1,27 +0,0 @@
-using Gestor.Infrastructure.Entities.Seguros;
-using Gestor.Infrastructure.Repository.Generic;
-using Gestor.Model.Domain.Seguros;
-using System;
-using System.Collections.Generic;
-
-namespace Gestor.Infrastructure.Repository.Interface
-{
- public interface IConfigExtratoImportRepository : IGenericRepository<ConfigExtratoImportDb>
- {
- void Delete(long id);
-
- List<ConfigExtratoImport> Find(bool ativo);
-
- List<ConfigExtratoImport> Find();
-
- ConfigExtratoImport FindById(long id);
-
- List<ConfigExtratoImport> FindBySeguradora(long id);
-
- Gestor.Model.Domain.Seguros.ConfigExtratoImport Merge(Gestor.Model.Domain.Seguros.ConfigExtratoImport ConfigExtratoImport);
-
- List<Gestor.Model.Domain.Seguros.ConfigExtratoImport> MergeRange(List<Gestor.Model.Domain.Seguros.ConfigExtratoImport> ConfigExtratoImport);
-
- Gestor.Model.Domain.Seguros.ConfigExtratoImport SaveOrUpdate(Gestor.Model.Domain.Seguros.ConfigExtratoImport ConfigExtratoImport);
- }
-} \ No newline at end of file