public CourseService(ITIModel db) { _db = db; }
public StudentController(IService <Student> student, IDepartmentService department, ITIModel db) { _student = student; _department = department; _db = db; }
public StudentService(ITIModel db) { _db = db; }
public DepartmentService(ITIModel db) { _db = db; }