this is common database context (using Microsoft.EntityFramework) which can be used by another class library.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

41 lines
1.6 KiB

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_Instructors
{
[Key]
public int ID { get; set; }
public Nullable<int> InstructorID { get; set; }
public Nullable<int> UserTypeID { get; set; }
public string FirstName { get; set; }
public string MiddleName { get; set; }
public string LastName { get; set; }
public Nullable<System.DateTime> Birthday { get; set; }
public string Phone { get; set; }
public string Cell { get; set; }
public string Email { get; set; }
public string Position { get; set; }
public int CampusID { get; set; }
public int InstructorTypeID { get; set; }
public string EmployeeID { get; set; }
public int DepartmentID { get; set; }
public string Manager { get; set; }
public bool IsManager { get; set; }
public string Education { get; set; }
public string AdditionalQualification { get; set; }
public string Address { get; set; }
public int RoleID { get; set; }
public string Status { get; set; }
public string Picture { get; set; }
public string TeachingCourse { get; set; }
public Nullable<System.DateTime> Employmentdate { get; set; }
public Nullable<System.DateTime> CreateDate { get; set; }
public Nullable<System.DateTime> UpdateDate { get; set; }
}
}