Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
ProjectView
Please create a React-JS view called "ProjectView" for the fields of the Project entity. The ProjectView must contain the following fields: - name: ProjectDescription type: STRING - name: ProjectTitle type: STRING - name: ProjectWeek type: ProjectWeek The data source for the [ProjectWeek] select control should be loaded from the relative URL: "/SchoolService/projectweek" (HTTP-GET) An existing Project entity should be loaded from the relative URL: "/ExternalPersonService/project/{id}" (HTTP-GET) If a new Project entity has been created, the new entity should be posted to the relative URL: "/ExternalPersonService/project" (HTTP-POST) If an existing Project entity has been updated, the modified entity should be sent to the relative URL: "/ExternalPersonService/project/{id}" (HTTP-PUT) If an existing Project entity has to be deleted, the following relative URL should be called: "/ExternalPersonService/project/{id}" (HTTP-DELETE) Add a HTML table to the view with the following ProjectAppointment columns: - column: Content - column: ToDate - column: Room - column: FromDate - column: Project - column: Description - column: ProjectOrganizer The table should have the title "ProjectAppointments" und the data must be loaded from the server with the following relative URL: "/ExternalPersonService/projectappointment/project/{id}" Add a HTML table to the view with the following ProjectAttendee columns: - column: Project - column: Student The table should have the title "ProjectAttendees" und the data must be loaded from the server with the following relative URL: "/StudentService/projectattendee/project/{id}" Add a HTML table to the view with the following ProjectOrganizer columns: - column: ExternalPerson - column: Teacher - column: Project The table should have the title "ProjectOrganizers" und the data must be loaded from the server with the following relative URL: "/ExternalPersonService/projectorganizer/project/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum