summaryrefslogtreecommitdiff
path: root/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IAtividadeRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IAtividadeRepository.cs')
-rw-r--r--Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IAtividadeRepository.cs19
1 files changed, 0 insertions, 19 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IAtividadeRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IAtividadeRepository.cs
deleted file mode 100644
index ea45a75..0000000
--- a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IAtividadeRepository.cs
+++ /dev/null
@@ -1,19 +0,0 @@
-using Gestor.Infrastructure.Entities.Common;
-using Gestor.Infrastructure.Repository.Generic;
-using Gestor.Model.Domain.Common;
-using System;
-using System.Collections.Generic;
-
-namespace Gestor.Infrastructure.Repository.Interface
-{
- public interface IAtividadeRepository : IGenericRepository<AtividadeDb>
- {
- List<Atividade> Find(string filter);
-
- long FindLastId();
-
- Atividade Merge(Atividade atividade);
-
- Atividade SaveOrUpdate(Atividade atividade);
- }
-} \ No newline at end of file