Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
OrganisationApp
Please create a React-JS application for the OrganisationModule. The application has to offer the following views for the user interface: 1. HundetrainerOrganisationView 2. OrganisationView The views have to be reachable for the user via a menu list at the left side of each view. The requirements for the 2 views are defined below. 1. The HundetrainerOrganisationView must contain the following fields: - name: Beginn type: DATE - name: Ende type: DATE - name: Hundetrainer type: Hundetrainer - name: Organisation type: Organisation - name: Rolle type: STRING The data source for the [Hundetrainer] select control should be loaded from the relative URL: "/KursService/hundetrainer" (HTTP-GET) The data source for the [Organisation] select control should be loaded from the relative URL: "/OrganisationService/organisation" (HTTP-GET) An existing HundetrainerOrganisation entity should be loaded from the relative URL: "/OrganisationService/hundetrainerorganisation/{id}" (HTTP-GET) If a new HundetrainerOrganisation entity has been created, the new entity should be posted to the relative URL: "/OrganisationService/hundetrainerorganisation" (HTTP-POST) If an existing HundetrainerOrganisation entity has been updated, the modified entity should be sent to the relative URL: "/OrganisationService/hundetrainerorganisation/{id}" (HTTP-PUT) If an existing HundetrainerOrganisation entity has to be deleted, the following relative URL should be called: "/OrganisationService/hundetrainerorganisation/{id}" (HTTP-DELETE) 2. The OrganisationView must contain the following fields: - name: Land type: STRING - name: Name type: STRING - name: Stadt type: STRING - name: Typ type: STRING - name: Website type: STRING An existing Organisation entity should be loaded from the relative URL: "/OrganisationService/organisation/{id}" (HTTP-GET) If a new Organisation entity has been created, the new entity should be posted to the relative URL: "/OrganisationService/organisation" (HTTP-POST) If an existing Organisation entity has been updated, the modified entity should be sent to the relative URL: "/OrganisationService/organisation/{id}" (HTTP-PUT) If an existing Organisation entity has to be deleted, the following relative URL should be called: "/OrganisationService/organisation/{id}" (HTTP-DELETE) Add a HTML table to the view with the following HundetrainerOrganisation columns: - column: Rolle - column: Beginn - column: Ende - column: Organisation - column: Hundetrainer The table should have the title "HundetrainerOrganisations" und the data must be loaded from the server with the following relative URL: "/OrganisationService/hundetrainerorganisation/organisation/{id}"
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum