-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStudent.cs
34 lines (30 loc) · 1.11 KB
/
Student.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace EFmodelCHECK.Models
{
public class Student
{
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string FatherName { get; set; }
public string BForm { get; set; }
public string CNIC { get; set; }
public DateTime DOB { get; set; }
public DateTime RegistrationDate { get; set; }
public int RollNumber { get; set; }
public int ClassId { get; set; }
public string Picture { get; set; }
public int RegisteredById { get; set; }
public string Address { get; set; }
public string Contact { get; set; }
public virtual Class Class { get; set; }
public virtual ICollection<User> RegisteredBy { get; set; }
public virtual ICollection<Fees> Fees { get; set; }
public virtual ICollection<Marks> Marks { get; set; }
public virtual ICollection<StudentAttendance> StudentAttendance { get; set; }
}
}