Overview
Summary
Contact
Donate
Imprint
Prompt for the
UserAddressView
Please create a React-JS view called "UserAddressView" for the fields of the UserAddress entity. The UserAddressView must contain the following fields: - name: AddressType type: STRING - name: City type: STRING - name: Country type: Country - name: IsPrimary type: BOOL - name: Line1 type: STRING - name: Line2 type: STRING - name: PostalCode type: STRING - name: State type: STRING - name: UserAccount type: UserAccount The data source for the [Country] select control should be loaded from the relative URL: "/CountryService/country" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing UserAddress entity should be loaded from the relative URL: "/CountryService/useraddress/{id}" (HTTP-GET) If a new UserAddress entity has been created, the new entity should be posted to the relative URL: "/CountryService/useraddress" (HTTP-POST) If an existing UserAddress entity has been updated, the modified entity should be sent to the relative URL: "/CountryService/useraddress/{id}" (HTTP-PUT) If an existing UserAddress entity has to be deleted, the following relative URL should be called: "/CountryService/useraddress/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint