Guest User

Untitled

a guest
Jan 7th, 2019
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6.  
  7. namespace DemoCincoArtigoEntityFramework
  8. {
  9. public class Venda
  10. {
  11. public int VendaID { get; set; }
  12. public int ProdutoID { get; set; }
  13. public virtual Produto Produto { get; set; }
  14. public int ClienteID { get; set; }
  15. public virtual Cliente Cliente { get; set; }
  16. }
  17. }
Add Comment
Please, Sign In to add comment