wiki:UseCase11

Version 1 (modified by 181201, 4 hours ago) ( diff )

--

Use-case 0011 - Add Platform Services

Initiating actor: Admin

Other actors: None

Description: The Admin wants to expand the platform's offerings by adding a new service category (for example "Pet Grooming") so that sitters can add it to their profiles.

Scenario:

  1. Admin navigates to the "Manage Services" page.
  2. System fetches the current list of platform services:
    SELECT service_id, type, description 
    FROM services 
    ORDER BY type ASC;
    
  3. Admin enters "Pet Grooming" and a description into the new service form and clicks Submit.
  4. System creates the new service in the database:
    INSERT INTO services (type, description)
    VALUES (
        'Pet Grooming', 
        'Taking your pet to a grooming salon.'
    );
    
Note: See TracWiki for help on using the wiki.