diff options
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/INotaFiscalRepository.cs')
| -rw-r--r-- | Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/INotaFiscalRepository.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/INotaFiscalRepository.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/INotaFiscalRepository.cs new file mode 100644 index 0000000..cba9155 --- /dev/null +++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/INotaFiscalRepository.cs @@ -0,0 +1,24 @@ +using Gestor.Infrastructure.Entities.Ferramentas;
+using Gestor.Infrastructure.Repository.Generic;
+using Gestor.Model.Domain.Ferramentas;
+using Gestor.Model.Domain.Relatorios;
+using System;
+using System.Collections.Generic;
+
+namespace Gestor.Infrastructure.Repository.Interface
+{
+ public interface INotaFiscalRepository : IGenericRepository<NotaFiscalDb>
+ {
+ void Delete(long id);
+
+ List<NotaFiscal> FindAll();
+
+ List<NotaFiscal> FindByDatas(Filtros filtro);
+
+ bool FindByExtrato(long id);
+
+ NotaFiscal Merge(NotaFiscal notaFiscal);
+
+ NotaFiscal SaveOrUpdate(NotaFiscal notaFiscal);
+ }
+}
\ No newline at end of file |