UIRequired.md - brainchildservices/curriculum GitHub Wiki

Slide 1

HOW TO FIND HOW MANY UI REQUIRED

  • To create and control any product data , we need to create Razor pages separately for
    • Index page (to showcase the whole product Data as List,Table, Card etc.)
    • Or else it can be shown sparately in a List page.
    • Create Page (where a form needed to performed in the UI to input/Add details of Product)
    • Read Page (where the Details of each Products can be shown respectively in the same URL page.)
    • Update Page (where the already saved Data can be changed and manipulated )
    • Delete Page (where the whole data comes under a particular name or Id can be deleted )

Slide 2

  • These UIs that we discussed above can be identified using there own URL , like;
    • websitename/Product/Index
    • websitename/Product/Create
    • websitename/Product/Read
    • websitename/Product/Edit
    • websitename/Product/Delete
    • websitename/Product/List