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