add client. move common add/get helpers to Base helper

This commit is contained in:
2020-10-14 11:03:25 -04:00
parent 3a6ca75196
commit 2a03bc6bc8
13 changed files with 388 additions and 15 deletions

View 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; }
}
}