-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTWD_User.cs
38 lines (34 loc) · 1.49 KB
/
TWD_User.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
// </auto-generated>
//------------------------------------------------------------------------------
namespace twd_project
{
using System;
using System.Collections.Generic;
public partial class TWD_User
{
public TWD_User()
{
this.CourseEntityGrades = new HashSet<CourseEntityGrade>();
this.EntityParameterGrades = new HashSet<EntityParameterGrade>();
this.webpages_Roles = new HashSet<webpages_Roles>();
this.Courses = new HashSet<Course>();
}
public int userId { get; set; }
public string userName { get; set; }
public string firstName { get; set; }
public string lastName { get; set; }
public Nullable<short> intakeId { get; set; }
public string bcitId { get; set; }
public virtual ICollection<CourseEntityGrade> CourseEntityGrades { get; set; }
public virtual ICollection<EntityParameterGrade> EntityParameterGrades { get; set; }
public virtual Intake Intake { get; set; }
public virtual ICollection<webpages_Roles> webpages_Roles { get; set; }
public virtual ICollection<Course> Courses { get; set; }
}
}