diff options
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfigExtratoImportRepository.cs')
| -rw-r--r-- | Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfigExtratoImportRepository.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfigExtratoImportRepository.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfigExtratoImportRepository.cs new file mode 100644 index 0000000..c1bf651 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfigExtratoImportRepository.cs @@ -0,0 +1,27 @@ +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 |