c969-project/C969Project/Data/Models/Customer.cs

18 lines
478 B
C#

namespace C969Project.Data.Models;
public class Customer
{
public int CustomerId { get; set; }
public string CustomerName { get; set; }
public int AddressId { get; set; }
public int Active { get; set; }
public DateTime CreateDate { get; set; }
public string CreatedBy { get; set; }
public DateTime LastUpdate { get; set; }
public string LastUpdateBy { get; set; }
public override string ToString()
{
return CustomerName;
}
}