Files
Training-VehicleService-May26/Trenser.VehicleServiceSystem/Trenser.VehicleServiceSystem/views/CustomerMenu.h
T
2026-05-19 09:56:36 +05:30

22 lines
446 B
C++

#pragma once
#include "Controller.h"
class CustomerMenu
{
private:
Controller m_controller;
bool handleOperation(int choice);
public:
void showMenu();
void logout();
void changePassword();
void updateDetails();
void selectService();
void selectComboPackage();
void viewServiceHistory();
void completePayments();
void viewInvoices();
void viewNotifications();
void configureNotifications();
};