diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:35:25 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 13:35:25 +0000 |
| commit | 674ca83ba9243a9e95a7568c797668dab6aee26a (patch) | |
| tree | 4a905b3fb1d827665a34d63f67bc5559f8e7235b /Gestor.Infrastructure/Gestor.Infrastructure.Repository.Logic/RamoRepository.cs | |
| download | gestor-674ca83ba9243a9e95a7568c797668dab6aee26a.tar.gz gestor-674ca83ba9243a9e95a7568c797668dab6aee26a.zip | |
feat: upload files
Diffstat (limited to 'Gestor.Infrastructure/Gestor.Infrastructure.Repository.Logic/RamoRepository.cs')
| -rw-r--r-- | Gestor.Infrastructure/Gestor.Infrastructure.Repository.Logic/RamoRepository.cs | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Logic/RamoRepository.cs b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Logic/RamoRepository.cs new file mode 100644 index 0000000..563c6bf --- /dev/null +++ b/Gestor.Infrastructure/Gestor.Infrastructure.Repository.Logic/RamoRepository.cs @@ -0,0 +1,85 @@ +using AutoMapper;
+using Gestor.Infrastructure.Entities.Generic;
+using Gestor.Infrastructure.Entities.Seguros;
+using Gestor.Infrastructure.Mappers;
+using Gestor.Infrastructure.Repository.Generic;
+using Gestor.Infrastructure.Repository.Interface;
+using Gestor.Infrastructure.UnitOfWork.Generic;
+using Gestor.Model.Domain.Seguros;
+using NHibernate;
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Infrastructure.Repository.Logic
+{
+ public class RamoRepository : GenericRepository<RamoDb>, IRamoRepository, IGenericRepository<RamoDb>
+ {
+ private readonly GenericUnitOfWork _unitOfWork;
+
+ public RamoRepository(GenericUnitOfWork unitOfWork) : base(unitOfWork.Session)
+ {
+ this._unitOfWork = unitOfWork;
+ }
+
+ public void Delete(long id)
+ {
+ base.Delete(base.FindEntityById(id));
+ }
+
+ public List<Ramo> Find(bool ativo)
+ {
+ return (
+ from x in this._unitOfWork.Session.CreateQuery("from RamoDb \r\n where ativo IS NULL OR ativo != '1'").List<RamoDb>()
+ select new Ramo()
+ {
+ Id = x.Id,
+ Nome = x.Nome,
+ Iof = x.Iof,
+ Ativo = x.Ativo
+ }).ToList<Ramo>();
+ }
+
+ public List<Ramo> Find()
+ {
+ return (
+ from x in this._unitOfWork.Session.CreateQuery("from RamoDb").List<RamoDb>()
+ select new Ramo()
+ {
+ Id = x.Id,
+ Nome = x.Nome,
+ Iof = x.Iof,
+ Ativo = x.Ativo
+ }).ToList<Ramo>();
+ }
+
+ public Ramo FindById(long id)
+ {
+ RamoDb ramoDb = base.FindEntityById(id);
+ return ApplicationMapper.Mapper.Map<RamoDb, Ramo>(ramoDb);
+ }
+
+ public Ramo Merge(Ramo ramo)
+ {
+ RamoDb ramoDb = ApplicationMapper.Mapper.Map<Ramo, RamoDb>(ramo);
+ base.Merge(ramoDb);
+ return ApplicationMapper.Mapper.Map<RamoDb, Ramo>(ramoDb);
+ }
+
+ public List<Ramo> MergeRange(List<Ramo> ramos)
+ {
+ List<RamoDb> ramoDbs = ApplicationMapper.Mapper.Map<List<Ramo>, List<RamoDb>>(ramos);
+ RamoRepository ramoRepository = this;
+ ramoDbs.ForEach(new Action<RamoDb>(ramoRepository.Merge));
+ return ApplicationMapper.Mapper.Map<List<RamoDb>, List<Ramo>>(ramoDbs);
+ }
+
+ public Ramo SaveOrUpdate(Ramo ramo)
+ {
+ RamoDb ramoDb = ApplicationMapper.Mapper.Map<Ramo, RamoDb>(ramo);
+ this.SaveOrUpdate(ramoDb);
+ return ApplicationMapper.Mapper.Map<RamoDb, Ramo>(ramoDb);
+ }
+ }
+}
\ No newline at end of file |