diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 15:29:41 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-30 15:29:41 +0000 |
| commit | 225aa1499e37faf9d38257caabbadc68d78b427e (patch) | |
| tree | 102bb7a40c58595348ae9d3c7076201759fe0720 /Decompiler/Gestor.Application.Servicos.Seguros.Itens/AeronauticoServico.cs | |
| parent | 1f4e14b2e973ee7de337fd4866d9a5ceff5cb6d1 (diff) | |
| download | gestor-225aa1499e37faf9d38257caabbadc68d78b427e.tar.gz gestor-225aa1499e37faf9d38257caabbadc68d78b427e.zip | |
decompiler.com
Diffstat (limited to 'Decompiler/Gestor.Application.Servicos.Seguros.Itens/AeronauticoServico.cs')
| -rw-r--r-- | Decompiler/Gestor.Application.Servicos.Seguros.Itens/AeronauticoServico.cs | 118 |
1 files changed, 118 insertions, 0 deletions
diff --git a/Decompiler/Gestor.Application.Servicos.Seguros.Itens/AeronauticoServico.cs b/Decompiler/Gestor.Application.Servicos.Seguros.Itens/AeronauticoServico.cs new file mode 100644 index 0000000..8e32f88 --- /dev/null +++ b/Decompiler/Gestor.Application.Servicos.Seguros.Itens/AeronauticoServico.cs @@ -0,0 +1,118 @@ +using System; +using System.Linq; +using System.Net; +using System.Net.Sockets; +using System.Threading.Tasks; +using Gestor.Application.Helpers; +using Gestor.Application.Servicos.Generic; +using Gestor.Application.ViewModels; +using Gestor.Infrastructure.UnitOfWork.Generic; +using Gestor.Infrastructure.UnitOfWork.Logic; +using Gestor.Model.API; +using Gestor.Model.Common; +using Gestor.Model.Domain.Common; +using Gestor.Model.Domain.Generic; +using Gestor.Model.Domain.Seguros; +using Newtonsoft.Json; + +namespace Gestor.Application.Servicos.Seguros.Itens; + +internal class AeronauticoServico : BaseServico +{ + public async Task<Aeronautico> Save(Aeronautico aeronautico) + { + return await Task.Run((Func<Aeronautico>)delegate + { + try + { + UnitOfWork commited = Instancia.Commited; + try + { + aeronautico = ((((DomainBase)aeronautico).Id == 0L) ? commited.AeronauticoRepository.SaveOrUpdate(aeronautico) : commited.AeronauticoRepository.Merge(aeronautico)); + ((GenericUnitOfWork)commited).Commit(); + return aeronautico; + } + finally + { + ((IDisposable)commited)?.Dispose(); + } + } + catch (Exception) + { + return (Aeronautico)null; + } + }); + } + + public async Task<bool> Delete(Item item) + { + int tries = 3; + return await Task.Run(delegate + { + //IL_009b: Unknown result type (might be due to invalid IL or missing references) + //IL_00a0: Unknown result type (might be due to invalid IL or missing references) + //IL_00a7: Unknown result type (might be due to invalid IL or missing references) + //IL_00b2: Unknown result type (might be due to invalid IL or missing references) + //IL_00b9: Unknown result type (might be due to invalid IL or missing references) + //IL_00c0: Unknown result type (might be due to invalid IL or missing references) + //IL_00c5: Unknown result type (might be due to invalid IL or missing references) + //IL_00d1: Expected O, but got Unknown + //IL_00d6: Unknown result type (might be due to invalid IL or missing references) + //IL_00f4: Unknown result type (might be due to invalid IL or missing references) + //IL_00fb: Unknown result type (might be due to invalid IL or missing references) + //IL_0106: Unknown result type (might be due to invalid IL or missing references) + //IL_0111: Unknown result type (might be due to invalid IL or missing references) + //IL_011c: Unknown result type (might be due to invalid IL or missing references) + //IL_0159: Expected O, but got Unknown + while (tries > 0) + { + try + { + UnitOfWork commited = Instancia.Commited; + try + { + if (item.Aeronautico != null && ((DomainBase)item.Aeronautico).Id > 0) + { + commited.AeronauticoRepository.Delete(((DomainBase)item.Aeronautico).Id); + } + commited.CoberturaRepository.DeletebyItem(((DomainBase)item).Id); + commited.ControleSinistroRepository.DeleteByItem(((DomainBase)item).Id); + commited.ItemRepository.Delete(((DomainBase)item).Id); + DateTime networkTime = Funcoes.GetNetworkTime(); + IPHostEntry hostEntry = Dns.GetHostEntry(Dns.GetHostName()); + RegistroLog val = new RegistroLog + { + Acao = (TipoAcao)2, + Usuario = Recursos.Usuario, + DataHora = networkTime, + Descricao = JsonConvert.SerializeObject((object)item, new JsonSerializerSettings + { + ReferenceLoopHandling = (ReferenceLoopHandling)1 + }) + }; + Aeronautico aeronautico = item.Aeronautico; + val.EntidadeId = ((aeronautico != null) ? ((DomainBase)aeronautico).Id : 0); + val.Tela = (TipoTela)3; + val.Versao = LoginViewModel.VersaoAtual; + val.NomeMaquina = Environment.MachineName; + val.UsuarioMaquina = Environment.UserName; + val.Ip = hostEntry.AddressList.FirstOrDefault((IPAddress ip) => ip.AddressFamily == AddressFamily.InterNetwork)?.ToString(); + RegistroLog keyValues = val; + SaveLog(keyValues, commited); + ((GenericUnitOfWork)commited).Commit(); + return true; + } + finally + { + ((IDisposable)commited)?.Dispose(); + } + } + catch (Exception e) + { + tries = Registrar(e, (TipoErro)203, tries, item); + } + } + return false; + }); + } +} |