summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanosRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanosRepository.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanosRepository.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanosRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanosRepository.cs
deleted file mode 100644
index e12b184..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanosRepository.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-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