Add documentation headers across system modules
This commit is contained in:
+9
-1
@@ -1,3 +1,11 @@
|
||||
/*
|
||||
File: UserManagementService.h
|
||||
Description: Declares the UserManagementService class which manages user-related operations in the Vehicle Service Management System.
|
||||
Provides functionality to create, update, retrieve, and remove users, as well as manage user notifications.
|
||||
Author: Trenser
|
||||
Date: 19-May-2026
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#include <string>
|
||||
#include "Map.h"
|
||||
@@ -17,7 +25,7 @@ public:
|
||||
void updateUserDetails(const std::string& userID, const std::string& email, const std::string& phone);
|
||||
util::Map<std::string, User*> getUsers();
|
||||
util::Map<std::string, User*> getUsers(util::UserType type);
|
||||
User* getUser(const std::string& userID);
|
||||
User* getUser (const std::string& userID);
|
||||
void removeUser(const std::string& userID);
|
||||
util::Vector<Notification*> getUserNotifications(const std::string& userID);
|
||||
void deleteNotification(const std::string& notificationID, const std::string& userID);
|
||||
|
||||
Reference in New Issue
Block a user