blob: c8abc0a33e37a4889e2536e557884ba04cdd4c6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
using Gestor.Infrastructure.Entities.Ferramentas;
using Gestor.Infrastructure.Repository.Generic;
using Gestor.Model.Domain.Ferramentas;
using System;
using System.Collections.Generic;
namespace Gestor.Infrastructure.Repository.Interface
{
public interface IReciboRepository : IGenericRepository<ReciboDb>
{
List<Recibo> BuscarRecibos();
void Delete(long id);
void DeleteRange(List<long> ids);
Recibo FindById(long id);
Recibo Merge(Recibo recibo);
Recibo SaveOrUpdate(Recibo recibo);
}
}
|