iptdevs-design-system 3.1.347 → 3.1.349

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.
@@ -5895,6 +5895,10 @@ class AttendanceService extends IPTGeneralService {
5895
5895
  let serviceUrl = `${this.SERVICE_URL}post/obtain/attendances/by/course/${courseCode}`;
5896
5896
  return this.http.get(serviceUrl);
5897
5897
  }
5898
+ getAttendaceByCourseAssigned(courseCode) {
5899
+ let serviceUrl = `${this.SERVICE_URL}obtain/attendances/by/course/assigned/${courseCode}`;
5900
+ return this.http.get(serviceUrl);
5901
+ }
5898
5902
  getCODCodeByStudentCode(studentCode) {
5899
5903
  let serviceUrl = `${this.SERVICE_URL}get/cod_code/by/student_code/${studentCode}`;
5900
5904
  return this.http.get(serviceUrl);
@@ -5931,6 +5935,10 @@ class AttendanceService extends IPTGeneralService {
5931
5935
  let serviceUrl = `${this.SERVICE_URL}obtain/attendances/by/course/${courseCode}`;
5932
5936
  return this.http.get(serviceUrl);
5933
5937
  }
5938
+ obtainAttendancessByAssigned(courseCode) {
5939
+ let serviceUrl = `${this.SERVICE_URL}obtain/attendances/by/assigned/${courseCode}`;
5940
+ return this.http.get(serviceUrl);
5941
+ }
5934
5942
  }
5935
5943
  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 });
5936
5944
  AttendanceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, providedIn: 'root' });