Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum
Prompt for the
SportsMatchView
Please create a React-JS view called "SportsMatchView" for the fields of the SportsMatch entity. The SportsMatchView must contain the following fields: - name: AwayScore type: LONG - name: AwayTeam type: SportsTeam - name: Event type: Event - name: HomeScore type: LONG - name: HomeTeam type: SportsTeam - name: IsOvertime type: BOOL - name: IsPenalty type: BOOL - name: League type: SportsLeague - name: MatchDay type: LONG - name: Notes type: STRING The data source for the [League] select control should be loaded from the relative URL: "/ArenaService/sportsleague" (HTTP-GET) The data source for the [AwayTeam] select control should be loaded from the relative URL: "/ArenaService/sportsteam" (HTTP-GET) The data source for the [HomeTeam] select control should be loaded from the relative URL: "/ArenaService/sportsteam" (HTTP-GET) The data source for the [Event] select control should be loaded from the relative URL: "/EventService/event" (HTTP-GET) An existing SportsMatch entity should be loaded from the relative URL: "/ArenaService/sportsmatch/{id}" (HTTP-GET) If a new SportsMatch entity has been created, the new entity should be posted to the relative URL: "/ArenaService/sportsmatch" (HTTP-POST) If an existing SportsMatch entity has been updated, the modified entity should be sent to the relative URL: "/ArenaService/sportsmatch/{id}" (HTTP-PUT) If an existing SportsMatch entity has to be deleted, the following relative URL should be called: "/ArenaService/sportsmatch/{id}" (HTTP-DELETE)
Copy prompt
Overview
My API
System Designs
Dienstleistungen
Kontakt
Energieausgleich
Ansprechpartner
Impressum