99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

合肥生活安徽新聞合肥交通合肥房產(chǎn)生活服務(wù)合肥教育合肥招聘合肥旅游文化藝術(shù)合肥美食合肥地圖合肥社保合肥醫(yī)院企業(yè)服務(wù)合肥法律

31927編程代寫(xiě)、代做Java/c++程序設(shè)計(jì)
31927編程代寫(xiě)、代做Java/c++程序設(shè)計(jì)

時(shí)間:2024-09-25  來(lái)源:合肥網(wǎng)hfw.cc  作者:hfw.cc 我要糾錯(cuò)



Assignment -1 Spring 2024 1 
Faculty of Engineering and Information Technology 
School of Computer Science 
 
 
31927 – Application Development with .NET 
**998 - .NET Application Development 
 
 
SPRING 2024 
ASSIGNMENT 1 – SPECIFICATION 
 
Due date Monday 23 September 2024, 11:00am 
Demonstration Required in the lab/tutorial session 
Weight 35% 
Groupwork Individual 
Submission Complete project folder zip 
Submit to Canvas 
 
Summary 
 
In this assignment, you are required to model the dotnet Hospital Management System by developing a 
console application using C#. 
 
The application should have appropriate data structures to distinguish between a Doctor, Administrator and 
Patient as well as store the necessary links between them (such as an appointment, between a Doctor and 
a Patient). You are given complete control in how you create these data structures, but guidance has been 
given overpage. 
 
Objects should be stored in the system and also written to .txt files such that the system can read them in 
and regenerate existing objects on load. This is mandatory. 
 
Students will need to submit the complete project folder in zip format, which will have the complete C# 
code, solution file, data file, etc. required to run/test the program. Any special instructions required to run 
the code has to be provided in a text file. Submitting a lone “.exe” is not acceptable. 
 
Assignment Objectives: 
 
The purpose of this assignment is to demonstrate competence in the following skills: 
• Ensure firm understanding of the .NET framework, C# basics and C# syntax 
• Understand how the .NET framework implements OO concepts and the implications this has for 
new language design 
• Array and string manipulation 
• Creating custom classes and methods in C# 
• File reading, writing and manipulation in C# 
• Creating interactive console applications 
• Creating good OO design. 
 
Program and data structures: 
 
• How you structure the classes in your program is your choice. One thing you are not allowed to do 
is make your program fully contained inside Program.cs, or any single class. 
• In the dotnet Hospital Management System, a user can log in as either a Patient, a Doctor, or an 
administrator. These are different roles, which would store different information, and would have a 
different menu. Your code structure should reflect this. Assignment -1 Spring 2024 2 
• Additionally, your code will need to generate Appointments. An appointment would need a reference 
to a single Doctor and a single Patient; your code structure should reflect this. You do not need to 
manage Dates/times for appointments (or anywhere, for that matter) in your code. This may result in 
appointments being difficult to distinguish and sort; you will not be marked down for this. 
• Every patient, doctor and admin, has a unique ID. This ID should be an integer of reasonable length 
(5-8 digits). This can be randomly generated, or incremental, but it should be generated by the 
system on object creation, not chosen/inputted by the user. 
 
Further recommendations: 
 
• Objects will need to be printed out one by one, it’s recommended that each data structure has a 
toString() function which compresses the notable data of the class into a succinct line. 
• Each role should be its own class and it should have its own MainMenu method, don’t try and create 
separate versions of the menu in Program.cs. 
• Don’t get confused by Administrators. Doctors and Patients can’t at any stage have “admin 
privileges”; the administrator is a completely separate entity. 
• You may find it useful to abstract common functionality into its own class, such as a FileManager 
class with static read and write methods or a Utils class which contains the methods to generate 
ID’s and filter lists. 
 Assignment -1 Spring 2024 3 
Marking Guide 
 
Below is the marking guide for this assessment. It is designed to allow you to get a Pass grade with 
minimal effort while still demonstrating that you understand the core principles of .NET development, to get 
a Distinction with reasonable effort, and to get a High Distinction with solid effort, and 100% with 
considerable effort. It is recommended that you pay attention to the grade distribution and work towards 
your own skill level. 
 
In the demos in the lab, your code needs to be compiled in Visual Studio Community edition 2022 and then 
the tutor will test for normal functionality as described in the descriptions above. If your code does not 
compile you will receive zero marks (no exceptions). 
 
 
Task Items Max 
Point Total 
Console Code and 
Design 
- Appropriate Headings for menus 
- Basic console design 2 
14 
- Helpful comments 
- Appropriate indenting and whitespacing 
- Consistent and appropriate C# naming convention used 
 2 
OOP principles used: 
- At least 1 example of inheritance 
- At least 1 example of method overloading is used 
- At least 1 example of method overriding is used 
- At least 1 example of constructor 
- At least 1 example of extension method 
- At least 1 example of garbage collection 

Appropriate use of exception handling 2 
Low coupling, high cohesion, general code quality 2 
Login Menu Functionality including cross checking credentials with .txt file 1.5 3 Password input masked in console 1.5 
Patient Menu 
List Patient Details 1 

List My Doctor Details 1 
List All Appointments 1 
Book Appointment, functionality including creating 
Appointment object and writing to txt file 2 
Doctor Menu 
List Doctor Details 1 

List Patients 1 
List Appointments 1 
Check Particular Patient 1 
List Appointments With Patient 1 
Admin Menu 
List All Doctors 1 

Check Doctor Details 1 
List All Patients 1 
Check Patient Details 1 
Add Doctor 1.5 
Add Patient 1.5 
Logout/Exit Logout functionality and Exit functionality for all 3 menus 1 1 
Maximum Full Marks 35 
Bonus Marks 
- Use of one example of anonymous method 
- Use of one example of generic 
- Use of one example delegates 

5 Email functionality (e.g. confirmation of patient registration, or 
confirmation of booking) 1 
Additional user role (e.g. receptionist) 1 Assignment -1 Spring 2024 4 
 Assignment -1 Spring 2024 5 
Specific expected tasks and examples 
 
In this assignment, you are required to develop a console-based, menu driven hospital management 
system using C#. Necessary data should be stored in “.txt” files. There are 3 core roles in the system. 
1. Patient 
2. Doctor 
3. Administrator 
Each of these roles have their own version of the menu with it’s own subset of menu options. 
 
Login Menu 
 
The user should be presented with this menu on program startup and cannot proceed further without 
entering valid login details. 
Input fields: 
- ID: Display the typed characters as is 
- Password: Display “*” instead of the actual 
characters 
ID and password should be checked against valid 
credentials inside your files. How you do this depends 
on how you’ve structured your classes; but any 
patient/doctor or admin should have a unique ID and a 
password. These values should be, in some way, 
stored in a .txt file, which your code should cross check at this screen. If entered values are not valid, 
display appropriate error message and allow the user to retry. 
 
Patient Menu 
 
The patient menu should have all of the following 
menu options (see right). 
 
All menu options MUST share this functionality 
(see example below): 
• Console is emptied to display new data 
• Appropriate heading displayed before data 
printed 
• Error handling for bad user input 
• Menu should never return itself, the user 
should be able to press a single key to return. 
 
 
 
 
 
 
 List Patient Details 
 
 
Functionality: Lists all the fields of the currently 
logged in patient to the console. 
 
Input: Key press to return to menu. Assignment 
-1 
 Spring 202
4
 
 
6
 
 
 
 
 
 
 
 
 
List My
 Doctor
 Details
 
 
Functionality: Lists all the fields of the 
doctor that is registered with the 
currently logged in patient, to the 
console.
 It is recommended that the 
Doctor 
 data structure has a toString
 
function which compresses the 
necessary details of the patient into a 
short line.
 
 
Input: Key press to return to menu.
 
 
List All Appointments
 
 
Functionality: Lists the details of all past 
appointments involving the currently 
logged in patient.
 
 
Input: Key press to return to menu.
 
 
Book Appointment
 
 
Functionality: Prompts the user for all 
the necessary information to generate a 
new appointment. This must be done 
with the doctor registered to the user. If 
the user has not registered to a doctor, 
they should be prompted to choose from 
a list of all doctors and register.
 
 
Input: 
 

 Integer to select doctor (if 
applicable)
 

 All necessary information to 
generate your Doctor data 
structure
 

 Key press to return to menu.
 Assignment 
-1 
 Spring 202
4
 
 
7
 
 
Doctor Menu
 
 
The doctor
 menu should have all of the 
following menu options
 (see right)
 
All menu
 options
 MUST share this
 
functionality:
 

 Console is emptied to display new 
data
 

 Appropriate heading displayed 
before data printed
 

 Error handling for bad user input
 

 Menu should never return itself, the 
user should be able to press a 
single key to return.
 
 
 
 
 
Logout
 
 
Functionality: Returns to the login menu
 
 
Exit
 
 
Functionality: Exits the application
 
 
List Doctor Details
 
 
Functionality: Lists the fields of the 
currently logged in doctor to the 
console
.
 
 
Input: Key press to return to menu.
 
List Patients
 
 
Functionality: Lists a shorthand outline 
of every patient that is registered with 
the currently logged in doctor to the 
console, line by line. It is recommended 
that the Patient data structure has a 
toString function which compresses the 
necessary details of the patient into a 
short line.
 
 
Input: Key press to return 
 
to menu.
 Assignment -1 Spring 2024 8  
List Appointments 
 
Functionality: Lists every appointment 
involving the currently logged in doctor, 
regardless of which patient is involved, to 
the console, line by line. It is 
recommended that that the Appointment 
data structure has a toString function 
which compresses the necessary details 
of the appointment into a short line. 
 
Input: Key press to return to menu. 
 
 
Check Particular Patient 
 
Functionality: Prompts the user for an ID and prints the details of the patient whose ID it belongs to, to 
the console line by line. If there is no patient with that ID, your code should handle the error and print 
an appropriate error message. It is your choice whether the user is prompted to re-enter the ID or if the 
program returns to the Patient menu. 
 
Input: Key press to return to menu. 
 
 
List Appointments With Patient 
 
Functionality: Prompts the user for an 
ID and finds the patient with that ID. 
Your code should then print every 
appointment between that patient and 
the currently logged in doctor. (You 
should not need to filter this list, as the 
patient should have been forced to be 
registered to only 1 doctor). If there is 
no patient with that ID, your code 
should handle the error and print an 
appropriate error message. It is your 
choice whether the user is prompted to 
re-enter the ID or if the program returns 
to the Patient menu. 
 
Input: Key press to return to menu. Assignment -1 Spring 2024 9 
 
Administrator menu 
 
The administrator menu should have all of 
the following menu options (see right) 
All menu options MUST share this 
functionality: 
• Console is emptied to display new 
data 
• Appropriate heading displayed 
before data printed 
• Error handling for bad user input 
• Menu should never return itself, the 
user should be able to press a single 
key to return. 
 
List All Doctors 
 
Functionality: Lists a shorthand version of every doctor contained in the system to the console, line by 
line. It is recommended that the Doctor data structure has a toString function which compresses the 
necessary details of the doctor into a short line. 
 
Input: Key press to return to menu. 
Logout 
 
Functionality: Returns to the login menu 
 
Exit 
 
Functionality: Exits the application 
 Assignment -1 Spring 2024 10 
 
 
 
 
 
Check Doctor Details 
 
Functionality: Prompts the user for an ID and prints the details of the doctor whose ID it belongs to, to 
the console line by line. If there is no doctor with that ID, your code should handle the error and print an 
appropriate error message. It is your choice whether the user is prompted to re-enter the ID or if the 
program returns to the Administrator menu. 
 
Input: Key press to return to menu. 
 
 
List All Patients 
 
Functionality: Lists the shorthand version of every patient in the system to the console, line by line. It 
is recommended that the Patient data structure has a toString function which compresses the 
necessary details of the patient into a short line. 
 
Input: Key press to return to menu. 
 
 
Check Patient Details 
 
 
Functionality: Prompts the user for an 
ID and prints the details of the doctor 
whose ID it belongs to, to the console 
line by line. If there is no doctor with 
that ID, your code should handle the 
error and print an appropriate error 
message. It is your choice whether the 
user is prompted to re-enter the ID or if 
the program returns to the 
Administrator menu. 
 
Input: Key press to return to menu. Assignment 
-1 
 Spring 202
4
 
 11
 
 
 
 
 
 
 
Add Patient
 
 
Functionality: Prompts the user for 
all the necessary data needed to 
generate a new Patient
 and add it 
to the system.
 
 
Input: Key press to return to menu.
 
Logout
 
 
Functionality: Returns to the login menu
 
 
Exit
 
 
Functionality: Exits the application
 
 
Add Doctor
 
 
Functionality: Prompts the user for 
all the necessary data needed to 
generate a new Doctor and add it 
to the system.
 
 
Input: Key press to return to menu.
 Assignment -1 Spring 2024 12 
 
Additional Information: 
 
Assignment Submission 
 
You must upload a zip file of the C# solution to Canvas. This must be done by the Due Date. You may 
submit as many times as you like until the due date. The final submission you make is the one that will be 
marked. If you have not uploaded your zip file within 7 days of the Due Date, or it cannot be compiled and 
run in the lab, then your assignment will receive a zero mark 
 
• NOTE 1: It is your responsibility to make sure you have thoroughly tested your program to make 
sure it is working correctly. 
• NOTE 2: Your final submission to Canvas is the one that is marked. It does not matter if earlier 
submissions were working; they will be ignored. Download your submission from Canvas and test it 
thoroughly. 
 
Queries 
 
If you have a problem such as illness which will affect your assignment submission contact the subject 
coordinator or lab tutor as soon as possible. 
 
Dr. Avinash Singh 
Room: CB11.07.115 
Phone: 9514 1825 
Email: avinash.singh@uts.edu.au 
 
If you have a question about the assignment, please post it to the Canvas discussion board for this subject 
so that everyone can see the response. 
 
If serious problems are discovered in assignment specification the class will be informed via an 
announcement on Canvas. It is your responsibility to make sure you frequently check Canvas. 
 
PLEASE NOTE : If the answer to your questions can be found directly in any of the following 
§ Subject outline 
§ Assignment specification 
§ Canvas FAQ and addendum 
§ Canvas discussion board 
 
You will be directed to these locations rather than given a direct answer. 
 
Extensions and Special Consideration 
 
Please refer to subject outline. 
 
Academic Standards and Late Penalties 
 
Please refer to subject outline. 

請(qǐng)加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp







 

掃一掃在手機(jī)打開(kāi)當(dāng)前頁(yè)
  • 上一篇:代寫(xiě)4CM508、代做C++,Python編程語(yǔ)言
  • 下一篇:代做ELEC5307、python程序語(yǔ)言代寫(xiě)
  • 無(wú)相關(guān)信息
    合肥生活資訊

    合肥圖文信息
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    急尋熱仿真分析?代做熱仿真服務(wù)+熱設(shè)計(jì)優(yōu)化
    出評(píng) 開(kāi)團(tuán)工具
    出評(píng) 開(kāi)團(tuán)工具
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    挖掘機(jī)濾芯提升發(fā)動(dòng)機(jī)性能
    海信羅馬假日洗衣機(jī)亮相AWE  復(fù)古美學(xué)與現(xiàn)代科技完美結(jié)合
    海信羅馬假日洗衣機(jī)亮相AWE 復(fù)古美學(xué)與現(xiàn)代
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士4號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士3號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士2號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
    合肥機(jī)場(chǎng)巴士1號(hào)線
  • 短信驗(yàn)證碼 豆包 幣安下載 AI生圖 目錄網(wǎng)

    關(guān)于我們 | 打賞支持 | 廣告服務(wù) | 聯(lián)系我們 | 網(wǎng)站地圖 | 免責(zé)聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網(wǎng) 版權(quán)所有
    ICP備06013414號(hào)-3 公安備 42010502001045

    99爱在线视频这里只有精品_窝窝午夜看片成人精品_日韩精品久久久毛片一区二区_亚洲一区二区久久

          久久久久久亚洲综合影院红桃 | 91久久精品国产91性色| 欧美黄色aaaa| 亚洲一区免费观看| 亚洲国产毛片完整版 | 欧美无砖砖区免费| 久久婷婷色综合| 亚洲午夜激情| 一区二区三区精密机械公司| 黄色成人免费网站| 国产精品家教| 欧美日韩国产综合久久| 免费精品99久久国产综合精品| 国产精品成人一区| 中文在线不卡| 亚洲精品网站在线播放gif| 欧美 日韩 国产在线| 欧美一区二区三区啪啪| 亚洲图片在线观看| 99在线热播精品免费99热| 在线观看成人网| 又紧又大又爽精品一区二区| 国产性猛交xxxx免费看久久| 午夜亚洲福利| 激情久久五月| 欧美精品二区| 免费观看成人鲁鲁鲁鲁鲁视频 | 久久美女性网| 久久久久久久国产| 久久婷婷麻豆| 免费观看日韩av| 欧美成人免费大片| 亚洲天堂成人在线观看| 亚洲一区三区电影在线观看| 99视频一区二区| 亚洲一区二区三区午夜| 亚洲女人天堂成人av在线| 亚洲一区二区三区中文字幕 | 欧美性大战xxxxx久久久| 欧美日韩国产在线看| 欧美三级在线播放| 国产精品久久久久久av福利软件| 国产精品嫩草影院一区二区 | 国产精品99久久久久久有的能看| 亚洲二区在线观看| 99视频精品全部免费在线| 亚洲视频欧美在线| 在线欧美福利| 99视频有精品| 一区二区欧美在线| 午夜精品国产| 欧美一区二区三区另类| 久久久久欧美精品| 欧美伦理在线观看| 国产精品久久久久久久久免费樱桃| 欧美日韩在线视频观看| 国产一区二区三区久久悠悠色av| 在线观看欧美日韩国产| 一区二区av在线| 久久久精品动漫| 欧美日韩mp4| 国产日韩精品入口| 欧美日韩专区| 国产亚洲成av人在线观看导航| 一区二区自拍| 亚洲欧美日韩国产综合| 欧美一区二区国产| 欧美日韩三级一区二区| 国产精品国产a| 亚洲国产精品成人综合| 校园激情久久| 欧美午夜影院| 亚洲国产精品一区制服丝袜| 亚洲无限av看| 欧美激情成人在线视频| 国产乱肥老妇国产一区二| 亚洲精品视频免费| 久久综合色天天久久综合图片| 欧美午夜精彩| 99精品国产一区二区青青牛奶| 久久精品一区二区三区不卡牛牛 | 国产精品激情| 99精品99| 欧美另类亚洲| 亚洲激情专区| 免费不卡在线观看| 在线观看不卡av| 久久av红桃一区二区小说| 欧美三级中文字幕在线观看| 91久久综合亚洲鲁鲁五月天| 久久精品91久久久久久再现| 国产精品视频内| 亚洲自拍偷拍一区| 国产精品福利网站| 狠狠色狠狠色综合日日tαg| 亚洲欧美中文字幕| 国产精品一二三| 午夜欧美精品久久久久久久| 国产精品久久二区二区| 在线亚洲精品| 欧美性一区二区| 在线一区欧美| 欧美大秀在线观看| 亚洲成人在线网| 欧美成人a视频| 亚洲精品影视| 欧美日韩精品在线| 亚洲视频第一页| 久久精品视频在线看| 国产中文一区二区| 另类天堂视频在线观看| 亚洲黄色成人久久久| 欧美激情在线免费观看| 亚洲人成网站在线观看播放| 欧美激情日韩| 亚洲综合社区| 国内精品国产成人| 欧美激情91| 在线播放日韩欧美| 欧美 日韩 国产在线| 99视频精品在线| 国产日韩精品视频一区| 免费的成人av| 亚洲香蕉伊综合在人在线视看| 国产精品视频免费观看| 久久一区中文字幕| 国产专区综合网| 欧美第一黄网免费网站| 亚洲在线播放| 尤物精品国产第一福利三区| 欧美人成在线视频| 亚洲欧美综合| 亚洲精品国产品国语在线app | 亚洲一区二区三区四区视频 | 性欧美8khd高清极品| 亚洲国产成人不卡| 欧美日韩影院| 麻豆av一区二区三区久久| 亚洲精品视频在线观看网站| 国产精品制服诱惑| 欧美a级一区| 久久国产精品一区二区| 亚洲精品日韩一| 欧美性做爰毛片| 欧美日韩国产成人在线观看| 久久久久久日产精品| 亚洲一二三级电影| 91久久久在线| 久久色在线播放| 亚洲欧美日韩在线不卡| 国产农村妇女精品| 亚洲精品一区二区三区在线观看| 国产日韩欧美黄色| 国产精品高潮粉嫩av| 欧美精品在线观看| 久久综合久久久久88| 欧美一区三区三区高中清蜜桃| 亚洲精品一区二区三区四区高清 | 激情综合中文娱乐网| 久久久久久亚洲精品杨幂换脸| 一区二区三区日韩欧美| 亚洲欧洲综合另类在线| 亚洲成人在线视频播放| 极品少妇一区二区三区精品视频 | 亚洲精品视频免费| 在线免费观看日本欧美| 国产亚洲成人一区| 免费不卡在线观看| 鲁大师成人一区二区三区| 久久精品中文字幕一区| 久久国产乱子精品免费女| 亚洲激情视频在线| 亚洲大片一区二区三区| 亚洲二区免费| 日韩视频免费观看高清完整版| 亚洲韩国青草视频| 日韩一级黄色片| 亚洲午夜羞羞片| 午夜在线电影亚洲一区| 欧美一乱一性一交一视频| 羞羞漫画18久久大片| 久久精品在线| 欧美夫妇交换俱乐部在线观看| 欧美激情第五页| 国产精品国产a| 国产一区二区三区在线观看视频 | 亚洲激情影院| 一区二区三区日韩| 欧美一区亚洲| 蜜桃精品久久久久久久免费影院| 免费欧美日韩| 国产精品啊啊啊| 国产主播一区二区三区四区| 亚洲高清在线| 亚洲欧美综合v| 模特精品在线| 国产精品青草久久久久福利99| 国产午夜精品美女视频明星a级| 在线观看亚洲精品视频| 这里只有精品丝袜|