Esempio n. 1
0
 public StudentsController(IStudentOperations studentOperations)
 {
     this.Helper = studentOperations;
 }
Esempio n. 2
0
 public UserController(IStudentOperations studentService)
 {
     _studentService = studentService;
 }
Esempio n. 3
0
 public StudentController(IStudentOperations db, IWebHostEnvironment hostEnvironment)
 {
     _db = db;
     webHostEnvironment = hostEnvironment;
 }