| Version 1 (modified by , 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:
- Admin navigates to the "Manage Services" page.
- System fetches the current list of platform services:
SELECT service_id, type, description FROM services ORDER BY type ASC;
- Admin enters "Pet Grooming" and a description into the new service form and clicks Submit.
- 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.
