public SecurityBLLManager(StudentPortalDbContext studentPortalDbContext)
 {
     _studentPortalDbContext = studentPortalDbContext;
 }
 public TeacherBLLManager(StudentPortalDbContext studentPortalDbContext)
 {
     _studentPortalDbContext = studentPortalDbContext;
 }
 public StudentPortalDbInitialiser(StudentPortalDbContext context)
 => _context = context;
예제 #4
0
 public StudentBLLManager(StudentPortalDbContext student)
 {
     _student = student;
 }
예제 #5
0
 public StudentsController(StudentPortalDbContext context)
 {
     _context = context;
 }
 public SemesterBLLManager(StudentPortalDbContext studentPortalDbContext)
 {
     this.studentPortalDbContext = studentPortalDbContext;
 }
예제 #7
0
 public RoutineBLLManager(StudentPortalDbContext studentPortalDbContext)
 {
     this.studentPortalDbContext = studentPortalDbContext;
 }
예제 #8
0
 public ParentsBLLManager(StudentPortalDbContext studentPortalDbContext)
 {
     this.studentPortalDbContext = studentPortalDbContext;
 }
 public UserBLLManager(StudentPortalDbContext db)
 {
     _db = db;
 }
 public CourseBLLManager(StudentPortalDbContext studentPortalDbContext)
 {
     this.studentPortalDbContext = studentPortalDbContext;
 }