public StudentsController(StudentService studentService, TeacherService teacherService, ObjectiveService objectiveService, IMemoryCache cache)
 {
     _studentService   = studentService;
     _teacherService   = teacherService;
     _objectiveService = objectiveService;
     _cache            = cache;
 }
Exemplo n.º 2
0
 public ObjectivesController(ObjectiveService objectiveService, IMemoryCache cache)
 {
     _objectiveService = objectiveService;
     _cache            = cache;
 }
Exemplo n.º 3
0
 public ObjectivesController(ObjectiveService objectiveService)
 {
     _objectiveService = objectiveService;
 }
 public ObjectiveController()
 {
     _objectiveService = new ObjectiveService();
 }