summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IReciboRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IReciboRepository.cs')
-rw-r--r--Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IReciboRepository.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IReciboRepository.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IReciboRepository.cs
new file mode 100644
index 0000000..c8abc0a
--- /dev/null
+++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IReciboRepository.cs
@@ -0,0 +1,23 @@
+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 IReciboRepository : IGenericRepository<ReciboDb>
+ {
+ List<Recibo> BuscarRecibos();
+
+ void Delete(long id);
+
+ void DeleteRange(List<long> ids);
+
+ Recibo FindById(long id);
+
+ Recibo Merge(Recibo recibo);
+
+ Recibo SaveOrUpdate(Recibo recibo);
+ }
+} \ No newline at end of file