18 lines
478 B
C#
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;
|
|
}
|
|
} |