Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
AgeGroupView
Please create a React-JS view called "AgeGroupView" for the fields of the AgeGroup entity. The AgeGroupView must contain the following fields: - name: Description type: STRING - name: FromNo type: INT An existing AgeGroup entity should be loaded from the relative URL: "/AgeGroupService/agegroup/{id}" (HTTP-GET) If a new AgeGroup entity has been created, the new entity should be posted to the relative URL: "/AgeGroupService/agegroup" (HTTP-POST) If an existing AgeGroup entity has been updated, the modified entity should be sent to the relative URL: "/AgeGroupService/agegroup/{id}" (HTTP-PUT) If an existing AgeGroup entity has to be deleted, the following relative URL should be called: "/AgeGroupService/agegroup/{id}" (HTTP-DELETE) Add a HTML table to the view with the following Curriculum columns: - column: FromDate - column: ToDate - column: AgeGroup The table should have the title "Curriculums" und the data must be loaded from the server with the following relative URL: "/AgeGroupService/curriculum/agegroup/{id}" Add a HTML table to the view with the following SchoolSubject columns: - column: SubjectName - column: AgeGroup The table should have the title "SchoolSubjects" und the data must be loaded from the server with the following relative URL: "/SchoolSubjectService/schoolsubject/agegroup/{id}" Add a HTML table to the view with the following Book columns: - column: Price - column: AgeGroup - column: Author - column: Title - column: BookID The table should have the title "Books" und the data must be loaded from the server with the following relative URL: "/AgeGroupService/book/agegroup/{id}" Add a HTML table to the view with the following SchoolClass columns: - column: Teacher - column: AgeGroup - column: Room - column: SchoolYear - column: ClassName - column: School The table should have the title "SchoolClasss" und the data must be loaded from the server with the following relative URL: "/SchoolYearService/schoolclass/agegroup/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum