Overview
Summary
Contact
Donate
Imprint
Prompt for the
RoomUnitView
Please create a React-JS view called "RoomUnitView" for the fields of the RoomUnit entity. The RoomUnitView must contain the following fields: - name: IsActive type: BOOL - name: RoomType type: RoomType - name: UnitCode type: STRING The data source for the [RoomType] select control should be loaded from the relative URL: "/RoomTypeService/roomtype" (HTTP-GET) An existing RoomUnit entity should be loaded from the relative URL: "/RoomTypeService/roomunit/{id}" (HTTP-GET) If a new RoomUnit entity has been created, the new entity should be posted to the relative URL: "/RoomTypeService/roomunit" (HTTP-POST) If an existing RoomUnit entity has been updated, the modified entity should be sent to the relative URL: "/RoomTypeService/roomunit/{id}" (HTTP-PUT) If an existing RoomUnit entity has to be deleted, the following relative URL should be called: "/RoomTypeService/roomunit/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint