Setup codebase

This commit is contained in:
Joel Thomas
2026-05-19 09:56:36 +05:30
parent f39f9d0e79
commit a7ad188801
59 changed files with 3840 additions and 0 deletions
@@ -0,0 +1,13 @@
#pragma once
#include "Controller.h"
class TechnicianMenu
{
private:
Controller m_controller;
bool handleOperation(int choice);
public:
void showMenu();
void completeJob();
void viewNotifications();
};