iptdevs-design-system 3.1.722 → 3.1.723

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3510,6 +3510,16 @@ class CourseService extends IPTGeneralService {
3510
3510
  this.generateRequestParams(params);
3511
3511
  return this.http.post(serviceUrl, this.httpOptions);
3512
3512
  }
3513
+ UpdateCourseTeacherByCode(params) {
3514
+ let serviceUrl = this.SERVICE_URL + 'post/update/course/teacher/by/code';
3515
+ this.generateRequestParams(params);
3516
+ return this.http.post(serviceUrl, this.httpOptions);
3517
+ }
3518
+ UpdateCourseCapacityByCode(params) {
3519
+ let serviceUrl = this.SERVICE_URL + '/post/update/course/capacity/by/code';
3520
+ this.generateRequestParams(params);
3521
+ return this.http.post(serviceUrl, this.httpOptions);
3522
+ }
3513
3523
  }
3514
3524
  CourseService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CourseService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
3515
3525
  CourseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CourseService, providedIn: 'root' });