Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
BookRentalView
Please create a React-JS view called "BookRentalView" for the fields of the BookRental entity. The BookRentalView must contain the following fields: - name: FromDate type: DATE - name: Book type: Book - name: Library type: Library - name: Teacher type: Teacher - name: ReservationDate type: DATE - name: ToDate type: DATE - name: Student type: Student The data source for the [Book] select control should be loaded from the relative URL: "/AgeGroupService/book" (HTTP-GET) The data source for the [Teacher] select control should be loaded from the relative URL: "/StudentService/teacher" (HTTP-GET) The data source for the [Library] select control should be loaded from the relative URL: "/LibraryService/library" (HTTP-GET) The data source for the [Student] select control should be loaded from the relative URL: "/StudentService/student" (HTTP-GET) An existing BookRental entity should be loaded from the relative URL: "/LibraryService/bookrental/{id}" (HTTP-GET) If a new BookRental entity has been created, the new entity should be posted to the relative URL: "/LibraryService/bookrental" (HTTP-POST) If an existing BookRental entity has been updated, the modified entity should be sent to the relative URL: "/LibraryService/bookrental/{id}" (HTTP-PUT) If an existing BookRental entity has to be deleted, the following relative URL should be called: "/LibraryService/bookrental/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum