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.
@@ -3570,6 +3570,16 @@ class CourseService extends IPTGeneralService {
3570
3570
  this.generateRequestParams(params);
3571
3571
  return this.http.post(serviceUrl, this.httpOptions);
3572
3572
  }
3573
+ getCourses(params) {
3574
+ let serviceUrl = this.SERVICE_URL + 'get/courses';
3575
+ this.generateRequestParams(params);
3576
+ return this.http.post(serviceUrl, this.httpOptions);
3577
+ }
3578
+ getCoursesByState(params) {
3579
+ let serviceUrl = this.SERVICE_URL + 'get/courses/by/state';
3580
+ this.generateRequestParams(params);
3581
+ return this.http.post(serviceUrl, this.httpOptions);
3582
+ }
3573
3583
  }
3574
3584
  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 });
3575
3585
  CourseService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CourseService, providedIn: 'root' });
@@ -6342,6 +6352,11 @@ class BudgetService extends IPTGeneralService {
6342
6352
  this.generateRequestParams(params);
6343
6353
  return this.http.post(serviceUrl, this.httpOptions);
6344
6354
  }
6355
+ getFullPaymentInformation(params) {
6356
+ const serviceUrl = this.SERVICE_URL + 'post/payment/bill/full-information';
6357
+ this.generateRequestParams(params);
6358
+ return this.http.post(serviceUrl, this.httpOptions);
6359
+ }
6345
6360
  }
6346
6361
  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 });
6347
6362
  BudgetService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: BudgetService, providedIn: 'root' });