iptdevs-design-system 3.1.341 → 3.1.343

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.
@@ -5835,6 +5835,10 @@ class AcademicService extends IPTGeneralService {
5835
5835
  this.generateRequestParams(params);
5836
5836
  return this.http.post(serviceUrl, this.httpOptions);
5837
5837
  }
5838
+ obtainCourseTheoryByCode(courseCode) {
5839
+ let serviceUrl = `${this.SERVICE_URL}obtain/course/theory/${courseCode}`;
5840
+ return this.http.get(serviceUrl);
5841
+ }
5838
5842
  }
5839
5843
  AcademicService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AcademicService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
5840
5844
  AcademicService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AcademicService, providedIn: 'root' });
@@ -5908,6 +5912,10 @@ class AttendanceService extends IPTGeneralService {
5908
5912
  let serviceUrl = `${this.SERVICE_URL}obtain/attendances/students/by/course/${courseCode}`;
5909
5913
  return this.http.get(serviceUrl);
5910
5914
  }
5915
+ obtainAttendancessByCourse(courseCode) {
5916
+ let serviceUrl = `${this.SERVICE_URL}obtain/attendances/by/course/${courseCode}`;
5917
+ return this.http.get(serviceUrl);
5918
+ }
5911
5919
  }
5912
5920
  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 });
5913
5921
  AttendanceService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AttendanceService, providedIn: 'root' });