Initial git push
This commit is contained in:
25
H_PLUS_Sports/Models/Salesperson.cs
Normal file
25
H_PLUS_Sports/Models/Salesperson.cs
Normal file
@ -0,0 +1,25 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace H_PLUS_Sports.Models
|
||||
{
|
||||
public partial class Salesperson
|
||||
{
|
||||
public Salesperson()
|
||||
{
|
||||
Order = new HashSet<Order>();
|
||||
}
|
||||
|
||||
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> Order { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user