blob: 322e62ee2b1355661b16dd58015493c096342fa0 (
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 ISinistroVidaRepository : IGenericRepository<SinistroVidaDb>
{
void Delete(long id);
SinistroVida FindById(long id);
SinistroVida FindBySinistroId(long id);
SinistroVida Merge(SinistroVida sinistroVida);
SinistroVida SaveOrUpdate(SinistroVida sinistroVida);
}
}
|