namespace custom.DAL.EF { using System; using System.Collections.Generic; public partial class Time { public int ID { get; set; } public Nullable EmployeeID { get; set; } public Nullable Date { get; set; } public Nullable MealHours { get; set; } public Nullable RestHours { get; set; } public Nullable DateCreated { get; set; } } }