summaryrefslogtreecommitdiff
path: root/Gestor.Application/Servicos/Seguros/Itens/GranizoServico.cs
blob: 054685cee6653522662e1442cf33def8f318f47f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
using Gestor.Application.Helpers;
using Gestor.Application.Servicos.Generic;
using Gestor.Application.ViewModels;
using Gestor.Infrastructure.Repository.Interface;
using Gestor.Infrastructure.UnitOfWork.Generic;
using Gestor.Infrastructure.UnitOfWork.Logic;
using Gestor.Model.Common;
using Gestor.Model.Domain.Common;
using Gestor.Model.Domain.Generic;
using Gestor.Model.Domain.Seguros;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Runtime.CompilerServices;
using System.Threading.Tasks;

namespace Gestor.Application.Servicos.Seguros.Itens
{
	internal class GranizoServico : BaseServico
	{
		public GranizoServico()
		{
		}

		public async Task<bool> Delete(Item item)
		{
			int num = 3;
			bool flag1 = await Task.Run<bool>(() => {
				bool flag;
				long id;
				string str;
				while (num > 0)
				{
					try
					{
						using (UnitOfWork commited = Instancia.Commited)
						{
							if (item.get_Granizo() != null && item.get_Granizo().get_Id() > (long)0)
							{
								commited.get_GranizoRepository().Delete(item.get_Granizo().get_Id());
							}
							commited.get_CoberturaRepository().DeletebyItem(item.get_Id());
							commited.get_ControleSinistroRepository().DeleteByItem(item.get_Id());
							commited.get_ItemRepository().Delete(item.get_Id());
							DateTime networkTime = Funcoes.GetNetworkTime();
							IPHostEntry hostEntry = Dns.GetHostEntry(Dns.GetHostName());
							RegistroLog registroLog = new RegistroLog();
							registroLog.set_Acao(2);
							registroLog.set_Usuario(Recursos.Usuario);
							registroLog.set_DataHora(networkTime);
							Item item1 = item;
							JsonSerializerSettings jsonSerializerSetting = new JsonSerializerSettings();
							jsonSerializerSetting.set_ReferenceLoopHandling(1);
							registroLog.set_Descricao(JsonConvert.SerializeObject(item1, jsonSerializerSetting));
							Granizo granizo = item.get_Granizo();
							id = (granizo != null ? granizo.get_Id() : (long)0);
							registroLog.set_EntidadeId(id);
							registroLog.set_Tela(3);
							registroLog.set_Versao(LoginViewModel.VersaoAtual);
							registroLog.set_NomeMaquina(Environment.MachineName);
							registroLog.set_UsuarioMaquina(Environment.UserName);
							IPAddress[] addressList = hostEntry.AddressList;
							Func<IPAddress, bool> u003cu003e9_11 = GranizoServico.u003cu003ec.u003cu003e9__1_1;
							if (u003cu003e9_11 == null)
							{
								u003cu003e9_11 = (IPAddress ip) => ip.AddressFamily == AddressFamily.InterNetwork;
								GranizoServico.u003cu003ec.u003cu003e9__1_1 = u003cu003e9_11;
							}
							IPAddress pAddress = ((IEnumerable<IPAddress>)addressList).FirstOrDefault<IPAddress>(u003cu003e9_11);
							if (pAddress != null)
							{
								str = pAddress.ToString();
							}
							else
							{
								str = null;
							}
							registroLog.set_Ip(str);
							base.SaveLog(registroLog, commited);
							commited.Commit();
							flag = true;
						}
					}
					catch (Exception exception)
					{
						num = base.Registrar(exception, 207, num, item, true);
						continue;
					}
					return flag;
				}
				return false;
			});
			return flag1;
		}

		public async Task<Granizo> Save(Granizo granizo)
		{
			Granizo granizo2 = await Task.Run<Granizo>(() => {
				Granizo granizo3;
				string str;
				try
				{
					using (UnitOfWork commited = Instancia.Commited)
					{
						TipoAcao tipoAcao = (granizo.get_Id() == 0 ? 0 : 1);
						granizo = (granizo.get_Id() == 0 ? commited.get_GranizoRepository().SaveOrUpdate(granizo) : commited.get_GranizoRepository().Merge(granizo));
						IPHostEntry hostEntry = Dns.GetHostEntry(Dns.GetHostName());
						RegistroLog registroLog = new RegistroLog();
						registroLog.set_Acao(tipoAcao);
						registroLog.set_Usuario(Recursos.Usuario);
						registroLog.set_DataHora(Funcoes.GetNetworkTime());
						Granizo granizo1 = granizo;
						JsonSerializerSettings jsonSerializerSetting = new JsonSerializerSettings();
						jsonSerializerSetting.set_ReferenceLoopHandling(1);
						registroLog.set_Descricao(JsonConvert.SerializeObject(granizo1, jsonSerializerSetting));
						registroLog.set_EntidadeId(granizo.get_Id());
						registroLog.set_Tela(3);
						registroLog.set_Versao(LoginViewModel.VersaoAtual);
						registroLog.set_NomeMaquina(Environment.MachineName);
						registroLog.set_UsuarioMaquina(Environment.UserName);
						IPAddress[] addressList = hostEntry.AddressList;
						Func<IPAddress, bool> u003cu003e9_01 = GranizoServico.u003cu003ec.u003cu003e9__0_1;
						if (u003cu003e9_01 == null)
						{
							u003cu003e9_01 = (IPAddress ip) => ip.AddressFamily == AddressFamily.InterNetwork;
							GranizoServico.u003cu003ec.u003cu003e9__0_1 = u003cu003e9_01;
						}
						IPAddress pAddress = ((IEnumerable<IPAddress>)addressList).FirstOrDefault<IPAddress>(u003cu003e9_01);
						if (pAddress != null)
						{
							str = pAddress.ToString();
						}
						else
						{
							str = null;
						}
						registroLog.set_Ip(str);
						base.SaveLog(registroLog, commited);
						commited.Commit();
						granizo3 = granizo;
					}
				}
				catch (Exception exception)
				{
					granizo3 = null;
				}
				return granizo3;
			});
			return granizo2;
		}
	}
}