Files
Training-VehicleService-May26/Trenser.VehicleServiceSystem/Trenser.VehicleServiceSystem/views/TechnicianMenu.h
T
2026-05-22 12:49:14 +05:30

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();
};