iptdevs-design-system 2.7.20 → 2.7.22

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.
@@ -800,6 +800,11 @@ class UserService extends IPTGeneralService {
800
800
  this.generateRequestParams(userToken);
801
801
  return this.http.post(serviceUrl, this.httpOptions);
802
802
  }
803
+ getAllMarketing(userToken) {
804
+ let serviceUrl = this.SERVICE_URL + 'post/obtain/all/user/marketing';
805
+ this.generateRequestParams(userToken);
806
+ return this.http.post(serviceUrl, this.httpOptions);
807
+ }
803
808
  getStudenbyCode(parans) {
804
809
  let serviceUrl = this.SERVICE_URL + 'get/obtain/student/by/code';
805
810
  this.generateRequestParams(parans);
@@ -1311,6 +1316,22 @@ class ParameterService extends IPTGeneralService {
1311
1316
  let serviceUrl = this.SERVICE_URL + 'get/gender/code/' + code;
1312
1317
  return this.http.get(serviceUrl);
1313
1318
  }
1319
+ getStratums() {
1320
+ let serviceUrl = this.SERVICE_URL + 'get/stratums';
1321
+ return this.http.get(serviceUrl);
1322
+ }
1323
+ getStratumByCode(code) {
1324
+ let serviceUrl = this.SERVICE_URL + 'get/stratum/by/code/' + code;
1325
+ return this.http.get(serviceUrl);
1326
+ }
1327
+ getCivilStatus() {
1328
+ let serviceUrl = this.SERVICE_URL + 'get/civil/status';
1329
+ return this.http.get(serviceUrl);
1330
+ }
1331
+ getCivilStatusByCode(code) {
1332
+ let serviceUrl = this.SERVICE_URL + 'get/civil/status/by/code/' + code;
1333
+ return this.http.get(serviceUrl);
1334
+ }
1314
1335
  }
1315
1336
  ParameterService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ParameterService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
1316
1337
  ParameterService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "13.1.3", ngImport: i0, type: ParameterService, providedIn: 'root' });