add client. move common add/get helpers to Base helper
This commit is contained in:
19
COA.EnterpriseServices.DataAccess/Entities/Client.cs
Normal file
19
COA.EnterpriseServices.DataAccess/Entities/Client.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
|
||||
namespace COA.EnterpriseServices.DataAccess.Entities
|
||||
{
|
||||
public class Client : IRecord
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public DateTime Created { get; set; }
|
||||
public DateTime Modified { get; set; }
|
||||
public string FirstName { get; set; }
|
||||
public string LastName { get; set; }
|
||||
public string Email { get; set; }
|
||||
public long Phone { get; set; }
|
||||
public string Address { get; set; }
|
||||
public string City { get; set; }
|
||||
public string State { get; set; }
|
||||
public string Zip { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user