Overview
Summary
Contact
Donate
Imprint
Prompt for the
MemberRoleView
Please create a React-JS view called "MemberRoleView" for the fields of the MemberRole entity. The MemberRoleView must contain the following fields: - name: AssignedAt type: DATE - name: Role type: Role - name: ServerMember type: ServerMember The data source for the [Role] select control should be loaded from the relative URL: "/RoleService/role" (HTTP-GET) The data source for the [ServerMember] select control should be loaded from the relative URL: "/ServerMemberService/servermember" (HTTP-GET) An existing MemberRole entity should be loaded from the relative URL: "/ServerMemberService/memberrole/{id}" (HTTP-GET) If a new MemberRole entity has been created, the new entity should be posted to the relative URL: "/ServerMemberService/memberrole" (HTTP-POST) If an existing MemberRole entity has been updated, the modified entity should be sent to the relative URL: "/ServerMemberService/memberrole/{id}" (HTTP-PUT) If an existing MemberRole entity has to be deleted, the following relative URL should be called: "/ServerMemberService/memberrole/{id}" (HTTP-DELETE)
Copy prompt
Overview
Summary
Contact
Donate
Imprint