UNPKG

iptdevs-design-system

Version:

Library common elements into IPT Plattform.

23 lines (22 loc) 1.45 kB
import { HttpClient } from '@angular/common/http'; import { GetNotesByGroupRq, GetNotesByStudentRq, INotesByUCourseAndStudentRq, IServiceCreateNewNoteRq, IServiceUpdateNoteRq, IdeletedNoteScoreRq, UpdateStudentNoteRq, calculateFinalNoteRq } from '../../models/notes/notes.interface'; import { Observable } from 'rxjs'; import { Response } from '../../models/response/response.interface'; import { IPTGeneralService } from '../service-enviroments'; import * as i0 from "@angular/core"; export declare class NotesService extends IPTGeneralService { private http; private SERVICE_URL; constructor(http: HttpClient); getNotesByGroup(params: GetNotesByGroupRq): Observable<Response>; getNotesByStudent(params: GetNotesByStudentRq): Observable<Response>; createNewNote(params: IServiceCreateNewNoteRq): Observable<Response>; updateStudentNote(params: UpdateStudentNoteRq): Observable<Response>; calculateFinalNote(params: calculateFinalNoteRq): Observable<Response>; getNotesByUserCourseStudent(params: INotesByUCourseAndStudentRq): Observable<Response>; updateNoteByTypeAndStudent(params: IServiceUpdateNoteRq): Observable<Response>; deleteNoteByTypeAndStudent(params: IdeletedNoteScoreRq): Observable<any>; getNotesByCourseExcel(params: GetNotesByGroupRq): Observable<any>; static ɵfac: i0.ɵɵFactoryDeclaration<NotesService, never>; static ɵprov: i0.ɵɵInjectableDeclaration<NotesService>; }