summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.Domain.Financeiro.Relatorios/DadosFechamento.cs
blob: 4926b88995171983da0678b7490e344517727515 (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
using System.ComponentModel;
using Gestor.Model.Attributes;

namespace Gestor.Model.Domain.Financeiro.Relatorios;

public class DadosFechamento
{
	private string _planos;

	[Description("PLANO DE CONTAS")]
	public string Planos
	{
		get
		{
			return _planos?.ToUpper();
		}
		set
		{
			_planos = value;
		}
	}

	[Tipo("VALOR")]
	[Description("TOTAL CRÉDITO")]
	public decimal Credito { get; set; }

	[Tipo("VALOR")]
	[Description("TOTAL DÉBITO")]
	public decimal Debito { get; set; }

	[Tipo("PERCENTUAL")]
	[Description("% CRÉDITO")]
	public decimal PercentualCredito { get; set; }

	[Tipo("PERCENTUAL")]
	[Description("% DÉBITO")]
	public decimal PercentualDebito { get; set; }

	[Tipo("VALOR")]
	[Description("TOTAL CRÉDITO - TOTAL DÉBITO")]
	public decimal Soma { get; set; }

	[Tipo("PERCENTUAL")]
	[Description("% TOTAL DE CRÉDITO - % TOTAL DE DÉBITO")]
	public decimal SomaPercentual { get; set; }
}