iptdevs-design-system 3.2.17 → 3.2.18

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.
@@ -4517,6 +4517,11 @@ class CourseService extends IPTGeneralService {
4517
4517
  this.generateRequestParams(params);
4518
4518
  return this.http.post(serviceUrl, this.httpOptions);
4519
4519
  }
4520
+ getCoursesByStartDateTwo(params) {
4521
+ let serviceUrl = this.SERVICE_URL + 'post/course/by/type/course';
4522
+ this.generateRequestParams(params);
4523
+ return this.http.post(serviceUrl, this.httpOptions);
4524
+ }
4520
4525
  numberClassByCode(idCode) {
4521
4526
  let serviceUrl = this.SERVICE_URL + 'get/coursetype/numclass/by/code/' + idCode;
4522
4527
  return this.http.get(serviceUrl);