using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ACLib.P2.AppContext.Models { public partial class AC_Consellings { [Key] public int ID { get; set; } public int ApplicationID { get; set; } public Nullable ConsellDate { get; set; } public string Location { get; set; } public bool HighRiskFlag { get; set; } public bool SelfRishFlag { get; set; } public bool UPREFlag { get; set; } public bool Rev1Flag { get; set; } public bool Rev2Flag { get; set; } public bool Deleted { get; set; } public string Note { get; set; } public string Counseller { get; set; } public string ReferredBy { get; set; } public Nullable CreateDate { get; set; } public Nullable UpdateDate { get; set; } } }