summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs')
-rw-r--r--Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs
new file mode 100644
index 0000000..fe26532
--- /dev/null
+++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs
@@ -0,0 +1,20 @@
+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