diff options
Diffstat (limited to 'Gestor.Model/Gestor.Model.Domain.Seguros/MetaSeguradora.cs')
| -rw-r--r-- | Gestor.Model/Gestor.Model.Domain.Seguros/MetaSeguradora.cs | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.Domain.Seguros/MetaSeguradora.cs b/Gestor.Model/Gestor.Model.Domain.Seguros/MetaSeguradora.cs new file mode 100644 index 0000000..842ea93 --- /dev/null +++ b/Gestor.Model/Gestor.Model.Domain.Seguros/MetaSeguradora.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Collections.ObjectModel; +using Gestor.Model.Common; +using Gestor.Model.Domain.Generic; + +namespace Gestor.Model.Domain.Seguros; + +public class MetaSeguradora : DomainBase +{ + public Seguradora Seguradora { get; set; } + + public Mes Mes { get; set; } + + public long Ano { get; set; } + + public decimal Valor { get; set; } + + public bool Recorrente { get; set; } = true; + + + public int TipoCalculo { get; set; } = 1; + + + public List<TupleList> Log() + { + return new List<TupleList> + { + new TupleList + { + Tuples = new ObservableCollection<Tuple<string, string, string>> + { + new Tuple<string, string, string>("VALOR DA META", Valor.ToString(), ""), + new Tuple<string, string, string>("MÊS", Mes.ToString(), ""), + new Tuple<string, string, string>("ANO", Ano.ToString(), "") + } + } + }; + } +} |