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