summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs20
1 files changed, 0 insertions, 20 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs
deleted file mode 100644
index fe26532..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs
+++ /dev/null
@@ -1,20 +0,0 @@
-using Gestor.Infrastructure.Entities.Seguros;
-using Gestor.Infrastructure.Repository.Generic;
-using Gestor.Model.Domain.Seguros;
-using System;
-
-namespace Gestor.Infrastructure.Repository.Interface
-{
- public interface IPerfilEmpresaRepository : IGenericRepository<PerfilEmpresaDb>
- {
- void Delete(long id);
-
- PerfilEmpresa Find(long id);
-
- PerfilEmpresa FindByControleId(long id);
-
- PerfilEmpresa Merge(PerfilEmpresa perfil);
-
- PerfilEmpresa SaveOrUpdate(PerfilEmpresa perfil);
- }
-} \ No newline at end of file