Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benwoo1110/covid-monitoring-system
An effective monitoring system with an Object-Oriented Programming (OOP) approach
https://github.com/benwoo1110/covid-monitoring-system
covid19 csharp object-oriented-programming
Last synced: 7 days ago
JSON representation
An effective monitoring system with an Object-Oriented Programming (OOP) approach
- Host: GitHub
- URL: https://github.com/benwoo1110/covid-monitoring-system
- Owner: benwoo1110
- Created: 2021-10-05T14:18:40.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-01-14T14:11:10.000Z (almost 3 years ago)
- Last Synced: 2024-11-15T14:46:28.685Z (about 2 months ago)
- Topics: covid19, csharp, object-oriented-programming
- Language: C#
- Homepage:
- Size: 426 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Covid Monitoring System
Since first identified in late 2019, COVID-19 has ravaged countries around world, halting economies, grinding international travel, and has affected all walks of lives. Similarly, Singapore as an international hub for multiple sectors such as healthcare, education, and trade, is not spared by the pandemic.
As part of our Programming II module, we were tasked to create an effective monitoring system with an Object-Oriented Programming (OOP) approach.
### Features
#### Unique keyboard interaction
With a purpose-built [ConsoleDisplayManger](COVIDMonitoringSystem.ConsoleApp/Display/ConsoleDisplayManager.cs), [Screen](COVIDMonitoringSystem.ConsoleApp/Display/AbstractScreen.cs) and [a suite of custom "UI elements"](COVIDMonitoringSystem.ConsoleApp/Display/Elements) classes, you can use arrow keys to navigate and enter to do selections.![Main Menu](screenshots/main-menu.png)
#### Auto Tab-Complete
Inspired by minecraft command tab completion (and the many things we had typos in input), we have implemented tab completions for most user input fields. This allow for faster and more reliable typing experience.![Main Menu](screenshots/tab-complete-1.png)
![Main Menu](screenshots/tab-complete-2.png)
#### Robust input validation
As a COVID management system, integrity of data is important. Thus, we need to ensure the input by uers are well taken care of, to ensure the reliability of the information.![Main Menu](screenshots/input-validation-1.png)
![Main Menu](screenshots/input-validation-2.png)
#### Dynamic List View
Show data in a list format. Uses C# reflection to allow for display of any objects and supports variable column width depending on the length of content.![Main Menu](screenshots/list-view-1.png)
![Main Menu](screenshots/list-view-2.png)
![Main Menu](screenshots/list-view-3.png)