iptdevs-design-system 3.1.929 → 3.1.931

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.
@@ -7127,6 +7127,21 @@ class AttendanceService extends IPTGeneralService {
7127
7127
  this.generateRequestParams(param);
7128
7128
  return this.http.post(serviceUrl, this.httpOptions);
7129
7129
  }
7130
+ updateOrCreateAttendances(params) {
7131
+ const serviceUrl = this.SERVICE_URL + 'update/or/create/attendances';
7132
+ this.generateRequestParams(params);
7133
+ return this.http.post(serviceUrl, this.httpOptions);
7134
+ }
7135
+ getTeacherEventsAndStudents(params) {
7136
+ const serviceUrl = this.SERVICE_URL + 'get/teacher/events/and/students';
7137
+ this.generateRequestParams(params);
7138
+ return this.http.post(serviceUrl, this.httpOptions);
7139
+ }
7140
+ getStudentsForEvent(params) {
7141
+ const serviceUrl = this.SERVICE_URL + 'get/students/for/event';
7142
+ this.generateRequestParams(params);
7143
+ return this.http.post(serviceUrl, this.httpOptions);
7144
+ }
7130
7145
  }
7131
7146
  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 });
7132
7147
  AttendanceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, providedIn: 'root' });