Exemple #1
0
 public CourseController(CourseApiService courseApiService, StudentApiService studentApiService, UserApiService userApiService, InstructorApiService ınstructorApiService)
 {
     ApiUrl                = ConfigHelper.GetConfigPar <string>("ApiUrl");
     _studentApiService    = studentApiService;
     _courseApiService     = courseApiService;
     _userApiService       = userApiService;
     _ınstructorApiService = ınstructorApiService;
 }
 public InstructorController(InstructorApiService ınstructorApiService)
 {
     ApiUrl = ConfigHelper.GetConfigPar <string>("ApiUrl");
     _ınstructorApiService = ınstructorApiService;
 }