Comments for the constructor of the userstory inner table

This commit is contained in:
Nicolai Ort 2020-07-10 22:27:43 +02:00
parent bc1c6b06be
commit e7c18b3fdf
1 changed files with 7 additions and 0 deletions

View File

@ -27,6 +27,13 @@ export class UserstoryInnerTableComponent extends TableComponentBase<
@Input() public storys: ScrumUserstory[] = [];
/**
* Constructor that establishes the initial backend communication.
* It also sets the tabel's items according to the "storys" input (needed for the dashboard).
* @param backendService
* @param modalService
* @param route
*/
constructor(
private backendService: BackendService,
private modalService: NgbModal,