Order.cs 617 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. namespace MyMoviesWPF
  4. {
  5. public partial class Order
  6. {
  7. public int Idorder { get; set; }
  8. public int Iduser { get; set; }
  9. public int? Idmovie { get; set; }
  10. public string? Status { get; set; }
  11. public decimal? Price { get; set; }
  12. public DateTime? Date { get; set; }
  13. public int? Idpayment { get; set; }
  14. public virtual Movie? IdmovieNavigation { get; set; }
  15. public virtual Payment? IdpaymentNavigation { get; set; }
  16. public virtual User IduserNavigation { get; set; } = null!;
  17. }
  18. }