Created
December 19, 2017 16:43
-
-
Save pablotdv/1e7e750738e564130d550e1fbbd7ef05 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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