using System; using System.Collections.Generic; namespace H_PLUS_Sports.Models { public partial class Salesperson { public Salesperson() { Order = new HashSet(); } public int SalespersonId { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string Email { get; set; } public string Phone { get; set; } public string Address { get; set; } public string City { get; set; } public string State { get; set; } public string Zipcode { get; set; } public virtual ICollection Order { get; set; } } }