blob: fe5549291f6c7aceb1cfb34eef2a5b555e01144c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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 ICentroRepository : IGenericRepository<CentroDb>
{
List<Centro> Find(string descricao);
List<Centro> Find();
Centro Merge(Centro centro);
Centro SaveOrUpdate(Centro centro);
}
}
|