Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
PriceItemView
Please create a React-JS view called "PriceItemView" for the fields of the PriceItem entity. The PriceItemView must contain the following fields: - name: BookingType type: STRING - name: CreatedAt type: DATE - name: DayOfWeek type: LONG - name: MembershipType type: MembershipType - name: PriceList type: PriceList - name: PricePerHour type: STRING - name: Sport type: Sport - name: TimeFrom type: STRING - name: TimeTo type: STRING The data source for the [Sport] select control should be loaded from the relative URL: "/SportService/sport" (HTTP-GET) The data source for the [MembershipType] select control should be loaded from the relative URL: "/MembershipTypeService/membershiptype" (HTTP-GET) The data source for the [PriceList] select control should be loaded from the relative URL: "/MembershipTypeService/pricelist" (HTTP-GET) An existing PriceItem entity should be loaded from the relative URL: "/MembershipTypeService/priceitem/{id}" (HTTP-GET) If a new PriceItem entity has been created, the new entity should be posted to the relative URL: "/MembershipTypeService/priceitem" (HTTP-POST) If an existing PriceItem entity has been updated, the modified entity should be sent to the relative URL: "/MembershipTypeService/priceitem/{id}" (HTTP-PUT) If an existing PriceItem entity has to be deleted, the following relative URL should be called: "/MembershipTypeService/priceitem/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum