Overview
Summary
Contact
Donate
Imprint
Prompt for the
AdImpressionView
Please create a React-JS view called "AdImpressionView" for the fields of the AdImpression entity. The AdImpressionView must contain the following fields: - name: Advertisement type: Advertisement - name: Clicked type: BOOL - name: RevenueShare type: DOUBLE - name: ShownAtUtc type: DATE - name: UserAccount type: UserAccount The data source for the [Advertisement] select control should be loaded from the relative URL: "/AdvertisementService/advertisement" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserAccountService/useraccount" (HTTP-GET) An existing AdImpression entity should be loaded from the relative URL: "/AdvertisementService/adimpression/{id}" (HTTP-GET) If a new AdImpression entity has been created, the new entity should be posted to the relative URL: "/AdvertisementService/adimpression" (HTTP-POST) If an existing AdImpression entity has been updated, the modified entity should be sent to the relative URL: "/AdvertisementService/adimpression/{id}" (HTTP-PUT) If an existing AdImpression entity has to be deleted, the following relative URL should be called: "/AdvertisementService/adimpression/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint