blob: b5722d84b2b8eeaa57bfb5b8bf7c2f5db7bec725 (
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 IPlanoRepository : IGenericRepository<PlanoDb>
{
List<Plano> Find(string descricao);
List<Plano> Find();
Plano Merge(Plano plano);
Plano SaveOrUpdate(Plano plano);
}
}
|