diff options
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanosRepository.cs')
| -rw-r--r-- | Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanosRepository.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanosRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanosRepository.cs new file mode 100644 index 0000000..e12b184 --- /dev/null +++ b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanosRepository.cs @@ -0,0 +1,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);
+ }
+}
\ No newline at end of file |