using Gestor.Model.Attributes; using System; using System.ComponentModel; using System.Runtime.CompilerServices; namespace Gestor.Model.Domain.Relatorios.Pagamento { public class AgrupamentoVendedor { [Description("ADIANTAMENTO LÍQUIDO")] [Tipo("VALOR")] public decimal Adiantamento { get; set; } [Description("Nº AGÊNCIA")] public string Agencia { get; set; } [Description("BANCO")] public string Banco { get; set; } [Description("Nº CONTA")] public string Conta { get; set; } [Description("CPF")] public string CPF { get; set; } [Description("ADIANTAMENTOS (+)")] [Tipo("VALOR")] public decimal Credito { get; set; } [Description("ADIANTAMENTOS (-)")] [Tipo("VALOR")] public decimal Debito { get; set; } [Description("DESCONTO")] [Tipo("VALOR")] public decimal Desconto { get; set; } [Description("ESTORNOS (-)")] [Tipo("VALOR")] public decimal Estorno { get; set; } [Description("REPASSE (+)")] [Tipo("VALOR")] public decimal Repasse { get; set; } [Description("REPASSE BRUTO")] [Tipo("VALOR")] public decimal RepasseBruto { get; set; } [Description("REPASSE LÍQUIDO")] [Tipo("VALOR")] public decimal ValorLiquido { get; set; } [Description("VENDEDOR")] public string Vendedor { get; set; } public AgrupamentoVendedor() { } } }