summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilRepository.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilRepository.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilRepository.cs
deleted file mode 100644
index bc721d4..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilRepository.cs
+++ /dev/null
@@ -1,23 +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 IPerfilRepository : IGenericRepository<PerfilDb>
- {
- void Delete(long id);
-
- Perfil Find(long id);
-
- List<Perfil> FindByControleId(long id);
-
- List<Perfil> FindByControleIds(string ids);
-
- Perfil Merge(Perfil perfil);
-
- Perfil SaveOrUpdate(Perfil perfil);
- }
-} \ No newline at end of file