summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfiguracaoRepository.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfiguracaoRepository.cs')
-rw-r--r--Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfiguracaoRepository.cs22
1 files changed, 22 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfiguracaoRepository.cs b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfiguracaoRepository.cs
new file mode 100644
index 0000000..2232774
--- /dev/null
+++ b/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Interface/IConfiguracaoRepository.cs
@@ -0,0 +1,22 @@
+using Gestor.Infrastructure.Entities.Configuracoes;
+using Gestor.Infrastructure.Repository.Generic;
+using Gestor.Model.Common;
+using Gestor.Model.Domain.Configuracoes;
+using System;
+using System.Collections.Generic;
+
+namespace Gestor.Infrastructure.Repository.Interface
+{
+ public interface IConfiguracaoRepository : IGenericRepository<ConfiguracaoSistemaDb>
+ {
+ List<ConfiguracaoSistema> BuscarConfiguracoes();
+
+ void Delete(long id);
+
+ ConfiguracaoSistema Find(Configuracao configuracao);
+
+ ConfiguracaoSistema Merge(ConfiguracaoSistema configuracao);
+
+ ConfiguracaoSistema SaveOrUpdate(ConfiguracaoSistema configuracao);
+ }
+} \ No newline at end of file