diff options
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanoRepository.cs')
| -rw-r--r-- | Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanoRepository.cs | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanoRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanoRepository.cs deleted file mode 100644 index b5722d8..0000000 --- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IPlanoRepository.cs +++ /dev/null @@ -1,19 +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 IPlanoRepository : IGenericRepository<PlanoDb>
- {
- List<Plano> Find(string descricao);
-
- List<Plano> Find();
-
- Plano Merge(Plano plano);
-
- Plano SaveOrUpdate(Plano plano);
- }
-}
\ No newline at end of file |