using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace DMSSample.Models { public partial class Person { public Person() { SportingEventTicket = new HashSet(); TicketPurchaseHistPurchasedBy = new HashSet(); TicketPurchaseHistTransferredFrom = new HashSet(); } [Display(Name = "ID")] public int Id { get; set; } [Display(Name = "Full Name")] public string FullName { get; set; } [Display(Name = "Last Name")] public string LastName { get; set; } [Display(Name = "First Name")] public string FirstName { get; set; } [Display(Name = "Event")] public ICollection SportingEventTicket { get; set; } [Display(Name = "Purchased By")] public ICollection TicketPurchaseHistPurchasedBy { get; set; } [Display(Name = "Transferred From")] public ICollection TicketPurchaseHistTransferredFrom { get; set; } } }