blob: bd2979d7077503573755eee94d267f9d1520a059 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using Gestor.Infrastructure.Entities.Seguros;
using Gestor.Infrastructure.Repository.Generic;
using Gestor.Model.Domain.Seguros;
using System;
using System.Collections.Generic;
namespace Gestor.Infrastructure.Repository.Interface
{
public interface IExpedicaoRepository : IGenericRepository<ExpedicaoDb>
{
void Delete(long id);
List<Expedicao> FindByIdDocumento(long IdDocumento);
Expedicao Merge(Expedicao expedicao);
Expedicao SaveOrUpdate(Expedicao expedicao);
}
}
|