blob: 367005b18cc8941fa680c100eada4f4c8809d277 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
using Gestor.Infrastructure.Entities.Seguros;
using Gestor.Infrastructure.Repository.Generic;
using Gestor.Model.Domain.Seguros;
using System;
namespace Gestor.Infrastructure.Repository.Interface
{
public interface ICondicaoRepasseRepository : IGenericRepository<CondicaoRepasseDb>
{
void Delete(long id);
CondicaoRepasse FindById(long id);
CondicaoRepasse Merge(CondicaoRepasse condicaoRepasse);
CondicaoRepasse SaveOrUpdate(CondicaoRepasse condicaoRepasse);
}
}
|