summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ICoberturaRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ICoberturaRepository.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ICoberturaRepository.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ICoberturaRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ICoberturaRepository.cs
deleted file mode 100644
index e2f5a01..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ICoberturaRepository.cs
+++ /dev/null
@@ -1,29 +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 ICoberturaRepository : IGenericRepository<CoberturaDb>
- {
- List<Cobertura> AddRange(List<Cobertura> coberturas);
-
- void Delete(long id);
-
- void DeletebyItem(long id);
-
- void DeleteRange(List<long> ids);
-
- Cobertura FindById(long id);
-
- List<Cobertura> FindByItemId(long id);
-
- Cobertura Merge(Cobertura cobertura);
-
- List<Cobertura> MergeRange(List<Cobertura> coberturas);
-
- Cobertura SaveOrUpdate(Cobertura cobertura);
- }
-} \ No newline at end of file