iptdevs-design-system 3.1.831 → 3.1.833

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.
@@ -3567,6 +3567,16 @@ class CourseService extends IPTGeneralService {
3567
3567
  this.generateRequestParams(params);
3568
3568
  return this.http.post(serviceUrl, this.httpOptions);
3569
3569
  }
3570
+ getCourses(params) {
3571
+ let serviceUrl = this.SERVICE_URL + 'get/courses';
3572
+ this.generateRequestParams(params);
3573
+ return this.http.post(serviceUrl, this.httpOptions);
3574
+ }
3575
+ getCoursesByState(params) {
3576
+ let serviceUrl = this.SERVICE_URL + 'get/courses/by/state';
3577
+ this.generateRequestParams(params);
3578
+ return this.http.post(serviceUrl, this.httpOptions);
3579
+ }
3570
3580
  }
3571
3581
  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 });
3572
3582
  CourseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CourseService, providedIn: 'root' });
@@ -6332,6 +6342,11 @@ class BudgetService extends IPTGeneralService {
6332
6342
  this.generateRequestParams(params);
6333
6343
  return this.http.post(serviceUrl, this.httpOptions);
6334
6344
  }
6345
+ getFullPaymentInformation(params) {
6346
+ const serviceUrl = this.SERVICE_URL + 'post/payment/bill/full-information';
6347
+ this.generateRequestParams(params);
6348
+ return this.http.post(serviceUrl, this.httpOptions);
6349
+ }
6335
6350
  }
6336
6351
  BudgetService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
6337
6352
  BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });