22 lines
446 B
C++
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();
|
|
};
|