blob: 3cc18b7cfb8254ab9408926f7defdfb466e56ed2 (
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.Common;
using Gestor.Infrastructure.Repository.Generic;
using Gestor.Model.Domain.Common;
using System;
using System.Collections.Generic;
namespace Gestor.Infrastructure.Repository.Interface
{
public interface IBancoRepository : IGenericRepository<BancoDb>
{
void Delete(long id);
List<Banco> Find(string filter);
Banco FindById(long id);
Banco Merge(Banco banco);
Banco SaveOrUpdate(Banco banco);
List<Banco> SelectDefault();
}
}
|