Overview
Summary
Contact
Donate
Imprint
Prompt for the
MembershipView
Please create a React-JS view called "MembershipView" for the fields of the Membership entity. The MembershipView must contain the following fields: - name: EndDate type: DATE - name: StartDate type: DATE - name: Status type: STRING - name: SubscriptionPlan type: SubscriptionPlan - name: UserAccount type: UserAccount The data source for the [SubscriptionPlan] select control should be loaded from the relative URL: "/SubscriptionPlanService/subscriptionplan" (HTTP-GET) The data source for the [UserAccount] select control should be loaded from the relative URL: "/UserProfileService/useraccount" (HTTP-GET) An existing Membership entity should be loaded from the relative URL: "/SubscriptionPlanService/membership/{id}" (HTTP-GET) If a new Membership entity has been created, the new entity should be posted to the relative URL: "/SubscriptionPlanService/membership" (HTTP-POST) If an existing Membership entity has been updated, the modified entity should be sent to the relative URL: "/SubscriptionPlanService/membership/{id}" (HTTP-PUT) If an existing Membership entity has to be deleted, the following relative URL should be called: "/SubscriptionPlanService/membership/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint