summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanosRepository.cs
blob: e12b184df0fe41425f3b98f3b9433fb27be61a26 (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 IPlanosRepository : IGenericRepository<PlanosDb>
	{
		List<Planos> Find(string descricao);

		List<Planos> Find();

		Planos FindById(long id);

		List<Planos> FindByPlanoId(long id);

		Planos Merge(Planos planos);

		Planos SaveOrUpdate(Planos planos);
	}
}