Overview
Summary
Contact
Donate
Imprint
Prompt for the
ShipAssignmentView
Please create a React-JS view called "ShipAssignmentView" for the fields of the ShipAssignment entity. The ShipAssignmentView must contain the following fields: - name: Mission type: Mission - name: Notes type: STRING - name: Ship type: Ship - name: ShipRole type: ShipRole The data source for the [ShipRole] select control should be loaded from the relative URL: "/ShipRoleService/shiprole" (HTTP-GET) The data source for the [Mission] select control should be loaded from the relative URL: "/MissionService/mission" (HTTP-GET) The data source for the [Ship] select control should be loaded from the relative URL: "/CompanyService/ship" (HTTP-GET) An existing ShipAssignment entity should be loaded from the relative URL: "/CompanyService/shipassignment/{id}" (HTTP-GET) If a new ShipAssignment entity has been created, the new entity should be posted to the relative URL: "/CompanyService/shipassignment" (HTTP-POST) If an existing ShipAssignment entity has been updated, the modified entity should be sent to the relative URL: "/CompanyService/shipassignment/{id}" (HTTP-PUT) If an existing ShipAssignment entity has to be deleted, the following relative URL should be called: "/CompanyService/shipassignment/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint