Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
JahresStatistikView
Please create a React-JS view called "JahresStatistikView" for the fields of the JahresStatistik entity. The JahresStatistikView must contain the following fields: - name: GesammeltTonnen type: STRING - name: GlasKategorie type: GlasKategorie - name: Jahr type: INT - name: Land type: Land - name: MarktMengeTonnen type: STRING - name: Notizen type: STRING - name: PostConsumerAnteilProzent type: STRING - name: RecyceltTonnen type: STRING - name: RecyclingQuoteProzent type: STRING - name: Region type: Region - name: SammelQuoteProzent type: STRING The data source for the [GlasKategorie] select control should be loaded from the relative URL: "/GlasKategorieService/glaskategorie" (HTTP-GET) The data source for the [Region] select control should be loaded from the relative URL: "/LandService/region" (HTTP-GET) The data source for the [Land] select control should be loaded from the relative URL: "/LandService/land" (HTTP-GET) An existing JahresStatistik entity should be loaded from the relative URL: "/GlasProduktService/jahresstatistik/{id}" (HTTP-GET) If a new JahresStatistik entity has been created, the new entity should be posted to the relative URL: "/GlasProduktService/jahresstatistik" (HTTP-POST) If an existing JahresStatistik entity has been updated, the modified entity should be sent to the relative URL: "/GlasProduktService/jahresstatistik/{id}" (HTTP-PUT) If an existing JahresStatistik entity has to be deleted, the following relative URL should be called: "/GlasProduktService/jahresstatistik/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum