iptdevs-design-system 3.1.926 → 3.1.927

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.
@@ -7117,6 +7117,11 @@ class AttendanceService extends IPTGeneralService {
7117
7117
  let serviceUrl = this.SERVICE_URL + 'dowload/excel/attendances/students/by/course/' + codeStudent;
7118
7118
  return this.http.get(serviceUrl);
7119
7119
  }
7120
+ updateAttendanceByEvent(params) {
7121
+ let serviceUrl = `${this.SERVICE_URL}update/attendance/by/event`;
7122
+ this.generateRequestParams(params);
7123
+ return this.http.post(serviceUrl, this.httpOptions);
7124
+ }
7120
7125
  }
7121
7126
  AttendanceService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
7122
7127
  AttendanceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, providedIn: 'root' });