using Gestor.Infrastructure.Entities.Seguros; using Gestor.Infrastructure.Repository.Generic; using Gestor.Model.Domain.Seguros; using System; namespace Gestor.Infrastructure.Repository.Interface { public interface ISinistroVidaRepository : IGenericRepository { void Delete(long id); SinistroVida FindById(long id); SinistroVida FindBySinistroId(long id); SinistroVida Merge(SinistroVida sinistroVida); SinistroVida SaveOrUpdate(SinistroVida sinistroVida); } }