Overview
Summary
Contact
Donate
Imprint
Prompt for the
CharityOrganizationView
Please create a React-JS view called "CharityOrganizationView" for the fields of the CharityOrganization entity. The CharityOrganizationView must contain the following fields: - name: Country type: STRING - name: Description type: STRING - name: Name type: STRING - name: Website type: STRING An existing CharityOrganization entity should be loaded from the relative URL: "/CharityOrganizationService/charityorganization/{id}" (HTTP-GET) If a new CharityOrganization entity has been created, the new entity should be posted to the relative URL: "/CharityOrganizationService/charityorganization" (HTTP-POST) If an existing CharityOrganization entity has been updated, the modified entity should be sent to the relative URL: "/CharityOrganizationService/charityorganization/{id}" (HTTP-PUT) If an existing CharityOrganization entity has to be deleted, the following relative URL should be called: "/CharityOrganizationService/charityorganization/{id}" (HTTP-DELETE) Add a HTML table to the view with the following CharityAuctionEvent columns: - column: BeneficiaryCharityOrganization - column: Currency - column: Title - column: EndDate - column: Description - column: TotalRaisedAmount - column: StartDate The table should have the title "CharityAuctionEvents" und the data must be loaded from the server with the following relative URL: "/CharityOrganizationService/charityauctionevent/beneficiarycharityorganization/{id}" Add a HTML table to the view with the following CharityListing columns: - column: Notes - column: DonationAmountCap - column: DonationPercentage - column: CharityOrganization - column: Listing - column: CharityProgram The table should have the title "CharityListings" und the data must be loaded from the server with the following relative URL: "/CharityOrganizationService/charitylisting/charityorganization/{id}"
Copy prompt
Overview
Summary
Contact
Donate
Imprint