blob: fe3e784024371fbe567c858db979980ddc68db25 (
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
|
using System;
using System.Collections.Generic;
using Gestor.Model.CalculoWeb.Auto;
namespace Gestor.Model.CalculoWeb;
public class Seguro
{
public decimal Comissao { get; set; }
public decimal Agenciamento { get; set; }
public List<ComissaoSeguradora> ComissaoSeguradora { get; set; }
public DateTime VigenciaInicial { get; set; }
public DateTime VigenciaFinal { get; set; }
public DateTime VigenciaFinalAnterior { get; set; }
public string TipoSeguro { get; set; }
public string Banco { get; set; }
public string Bonus { get; set; }
public string SeguradoraAnterior { get; set; }
public string CodigoIdentificacao { get; set; }
public string NumeroApoliceAnterior { get; set; }
public string Sinistros { get; set; }
public bool RenovacaoGarantida { get; set; }
public string Observacoes { get; set; }
public long Id { get; set; }
}
|