Skip to content

Instantly share code, notes, and snippets.

@pablotdv
Created December 19, 2017 16:43
Show Gist options
  • Save pablotdv/1e7e750738e564130d550e1fbbd7ef05 to your computer and use it in GitHub Desktop.
Save pablotdv/1e7e750738e564130d550e1fbbd7ef05 to your computer and use it in GitHub Desktop.
public class DadosRelatorio
{
public int PedidoId { get; set; }
public DateTime DataPedido { get; set; }
public int ClienteId { get; set; }
public string NomeCliente { get; set; }
public int ProdutoId { get; set; }
public string DescricaoProduto { get; set; }
public double PrecoProduto { get; set; }
public double Quantidade { get; set; }
public double ValorTotal { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment