22 lines
535 B
C++
22 lines
535 B
C++
/*
|
|
File: TechnicianMenu.h
|
|
Description: Declares the TechnicianMenu class which provides the technician-facing console menu in the Vehicle Service Management System.
|
|
Supports operations such as viewing assigned jobs, completing jobs, and managing notifications.
|
|
Author: Trenser
|
|
Date: 19-May-2026
|
|
*/
|
|
|
|
#pragma once
|
|
#include "Controller.h"
|
|
|
|
class TechnicianMenu
|
|
{
|
|
private:
|
|
Controller m_controller;
|
|
bool handleOperation(int choice);
|
|
public:
|
|
void showMenu();
|
|
void completeJob();
|
|
void viewNotifications();
|
|
};
|