Guest User

Untitled

a guest
Dec 13th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. public class Item
  2. {
  3. public string idItemPedido { get; set; }
  4. public int item { get; set; }
  5. public string plano { get; set; }
  6. public Produto produto { get; set; }
  7. public string descricaoItem { get; set; }
  8. public decimal valorUnitario { get; set; }
  9. public string qtde { get; set; }
  10. public decimal valorTotal { get; set; }
  11. public string pontos { get; set; }
  12. }
  13. public void GravaItensPedido(string CodigoCabecahoPedido)
  14. {
  15.  
  16. var strQuery = "";
  17.  
  18. foreach (Item itens in (List<Item>))
  19. {
  20.  
  21. }
  22. }
Add Comment
Please, Sign In to add comment