Beispiel #1
0
 public StudentsController(Services.IStudentsDbService dbService)
 {
     _dbService = dbService;
 }
 public EnrollmentsController(IStudentsDbService studentsDbService)
 {
     _dbService = studentsDbService;
 }
Beispiel #3
0
 public EnrollmentsController(Services.IStudentsDbService dbService, IConfiguration configuration)
 {
     _dbService    = dbService;
     Configuration = configuration;
 }