iptdevs-design-system 2.5.4 → 2.6.1

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.
@@ -1810,6 +1810,16 @@ class NotesService {
1810
1810
  this.generateRequestParams(params);
1811
1811
  return this.http.post(serviceUrl, this.httpOptions);
1812
1812
  }
1813
+ updateStudentNote(params) {
1814
+ let serviceUrl = this.SERVICE_URL + 'update/note';
1815
+ this.generateRequestParams(params);
1816
+ return this.http.put(serviceUrl, this.httpOptions);
1817
+ }
1818
+ calculateFinalNote(params) {
1819
+ let serviceUrl = this.SERVICE_URL + 'post/calculate/final/note';
1820
+ this.generateRequestParams(params);
1821
+ return this.http.post(serviceUrl, this.httpOptions);
1822
+ }
1813
1823
  generateRequestParams(param) {
1814
1824
  this.httpOptions = {
1815
1825
  header: new HttpHeaders(),