summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IAgendaEmailRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IAgendaEmailRepository.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IAgendaEmailRepository.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IAgendaEmailRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IAgendaEmailRepository.cs
deleted file mode 100644
index 6e4ffa1..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IAgendaEmailRepository.cs
+++ /dev/null
@@ -1,29 +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 IAgendaEmailRepository : IGenericRepository<AgendaEmailDb>
- {
- void Delete(long id);
-
- List<AgendaEmail> FindByAgenda(List<long> ids);
-
- List<AgendaEmail> FindByAgendaId(long id);
-
- AgendaEmail FindById(long id);
-
- List<AgendaEmail> FindEmailAgenda(string email);
-
- List<AgendaEmail> Inserir(List<AgendaEmail> emails, Agenda agenda);
-
- AgendaEmail Merge(AgendaEmail agendaEmail);
-
- List<AgendaEmail> Merge(List<AgendaEmail> emails, Agenda agenda);
-
- AgendaEmail SaveOrUpdate(AgendaEmail agendaEmail);
- }
-} \ No newline at end of file