//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace jQWidgetsMVCDemo.Models { using System; using System.Collections.Generic; public partial class Employee { public int EmployeeID { get; set; } public Nullable ManagerID { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string Title { get; set; } public string Country { get; set; } public string City { get; set; } public string Address { get; set; } public Nullable HireDate { get; set; } public Nullable BirthDate { get; set; } } }