Evaluation ({ applyDates, code, description, grades, title, weight })
Argument types
{
applyDates: IApplyDate,
code: string,
description: string,
grades: IGrade[],
title: string,
weight: number,
}
Attributes
private weight: number;
private code: string;
private title: string;
private description: string;
private grades: IGrade[];
private applyDates: IApplyDate;
and has the following interfaces:
interface IGrade {
releaseDate: Date;
grade: number;
}
interface IApplyDate {
predicted: Date;
applied: Date;
published: Date;
}
Methods
Public
public setWeight (weight: number): voidpublic getWeight (): numberpublic setCode (code: string): voidpublic getCode (): stringpublic setTitle (title: string): voidpublic getTitle (): stringpublic setDescription (description: string): voidpublic getDescription (): stringpublic setGrades (grades: IGrade[]): voidpublic getGrades (): IGrade[]public setApplyDates (applydates: IApplyDate): voidpublic getApplyDates (): IApplyDate