@paulkasram/smart-campus-energy-management-system
Version:
The Smart Campus Energy Management System is designed to optimize energy usage across various buildings and facilities on a university campus.
14 lines (13 loc) • 432 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
class UserEngagement {
constructor(id, userId) {
this.id = id;
this.userId = userId;
}
viewUsage(CentralManagementPlatform) {
console.log(`A request to view Energy Usage have been made. User ID: ${this.userId}`);
CentralManagementPlatform.visualizeData();
}
}
exports.default = UserEngagement;