iptdevs-design-system 2.7.26 → 2.7.27

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.
@@ -2325,6 +2325,11 @@ class AcademicService extends IPTGeneralService {
2325
2325
  this.generateRequestParams(params);
2326
2326
  return this.http.post(serviceUrl, this.httpOptions);
2327
2327
  }
2328
+ obtainLastStudentCod(params) {
2329
+ let serviceUrl = this.SERVICE_URL + 'post/obtain/last/student/cod/by/student';
2330
+ this.generateRequestParams(params);
2331
+ return this.http.post(serviceUrl, this.httpOptions);
2332
+ }
2328
2333
  getCodGenDataStudent(codeStudent) {
2329
2334
  let serviceUrl = this.SERVICE_URL + 'get/general/data/student/by/code/' + codeStudent;
2330
2335
  return this.http.get(serviceUrl);