blob: 4dde7eb2c42c6fa7ba941d1bdcaa17f6dc2bc13c (
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.Financeiro;
using Gestor.Infrastructure.Repository.Generic;
using Gestor.Model.Domain.Financeiro;
using System;
using System.Collections.Generic;
namespace Gestor.Infrastructure.Repository.Interface
{
public interface IBancosContasRepository : IGenericRepository<BancosContasDb>
{
void Delete(long id);
List<BancosContas> Find(string descricao);
List<BancosContas> Find();
BancosContas FindById(long id);
BancosContas Merge(BancosContas bancosContas);
BancosContas SaveOrUpdate(BancosContas bancosContas);
}
}
|