using System; using System.Collections.Generic; namespace MyMoviesWPF { public partial class Payment { public Payment() { Orders = new HashSet(); } public int Idpayment { get; set; } public string PaymentType { get; set; } = null!; public decimal Sum { get; set; } public DateTime? Date { get; set; } public string? Status { get; set; } public virtual ICollection Orders { get; set; } } }