summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPerfilEmpresaRepository.cs
blob: fe26532bcc23beb2fd2a0381a5eb3ff5db7b4c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
	}
}