summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ICredencialRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ICredencialRepository.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ICredencialRepository.cs23
1 files changed, 0 insertions, 23 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ICredencialRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ICredencialRepository.cs
deleted file mode 100644
index 67ef505..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/ICredencialRepository.cs
+++ /dev/null
@@ -1,23 +0,0 @@
-using Gestor.Infrastructure.Entities.Ferramentas;
-using Gestor.Infrastructure.Repository.Generic;
-using Gestor.Model.Domain.Ferramentas;
-using System;
-using System.Collections.Generic;
-
-namespace Gestor.Infrastructure.Repository.Interface
-{
- public interface ICredencialRepository : IGenericRepository<CredencialDb>
- {
- void Delete(long id);
-
- List<Credencial> Find(long idEmpresa);
-
- List<Credencial> Find(string descricao, long idEmpresa);
-
- Credencial FindById(long id);
-
- Credencial Merge(Credencial credencial);
-
- Credencial SaveOrUpdate(Credencial credencial);
- }
-} \ No newline at end of file