Overview
Summary
Contact
Donate
Imprint
Prompt for the
RobotaxiServiceView
Please create a React-JS view called "RobotaxiServiceView" for the fields of the RobotaxiService entity. The RobotaxiServiceView must contain the following fields: - name: AccessMethod type: STRING - name: IsCommercial type: BOOL - name: PartnerCompany type: Company - name: Program type: Program - name: ServiceArea type: ServiceArea - name: WaitlistStatus type: STRING - name: WithPartner type: BOOL The data source for the [PartnerCompany] select control should be loaded from the relative URL: "/CompanyService/company" (HTTP-GET) The data source for the [ServiceArea] select control should be loaded from the relative URL: "/CountryService/servicearea" (HTTP-GET) The data source for the [Program] select control should be loaded from the relative URL: "/ProgramService/program" (HTTP-GET) An existing RobotaxiService entity should be loaded from the relative URL: "/CompanyService/robotaxiservice/{id}" (HTTP-GET) If a new RobotaxiService entity has been created, the new entity should be posted to the relative URL: "/CompanyService/robotaxiservice" (HTTP-POST) If an existing RobotaxiService entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/robotaxiservice/{id}" (HTTP-PUT) If an existing RobotaxiService entity has to be deleted, the following relative URL should be called: "/CompanyService/robotaxiservice/{id}" (HTTP-DELETE) Add a HTML table to the view with the following AirportService columns: - column: Airport - column: Status - column: RobotaxiService - column: LaunchDate The table should have the title "AirportServices" und the data must be loaded from the server with the following relative URL: "/CityService/airportservice/robotaxiservice/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint