国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看

合肥生活安徽新聞合肥交通合肥房產生活服務合肥教育合肥招聘合肥旅游文化藝術合肥美食合肥地圖合肥社保合肥醫院企業服務合肥法律

31927編程代寫、代做Java/c++程序設計
31927編程代寫、代做Java/c++程序設計

時間:2024-09-25  來源:合肥網hfw.cc  作者:hfw.cc 我要糾錯



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. 

請加QQ:99515681  郵箱:99515681@qq.com   WX:codinghelp







 

掃一掃在手機打開當前頁
  • 上一篇:代寫4CM508、代做C++,Python編程語言
  • 下一篇:代做ELEC5307、python程序語言代寫
  • 無相關信息
    合肥生活資訊

    合肥圖文信息
    流體仿真外包多少錢_專業CFD分析代做_友商科技CAE仿真
    流體仿真外包多少錢_專業CFD分析代做_友商科
    CAE仿真分析代做公司 CFD流體仿真服務 管路流場仿真外包
    CAE仿真分析代做公司 CFD流體仿真服務 管路
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真技術服務
    流體CFD仿真分析_代做咨詢服務_Fluent 仿真
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲勞振動
    結構仿真分析服務_CAE代做咨詢外包_剛強度疲
    流體cfd仿真分析服務 7類仿真分析代做服務40個行業
    流體cfd仿真分析服務 7類仿真分析代做服務4
    超全面的拼多多電商運營技巧,多多開團助手,多多出評軟件徽y1698861
    超全面的拼多多電商運營技巧,多多開團助手
    CAE有限元仿真分析團隊,2026仿真代做咨詢服務平臺
    CAE有限元仿真分析團隊,2026仿真代做咨詢服
    釘釘簽到打卡位置修改神器,2026怎么修改定位在范圍內
    釘釘簽到打卡位置修改神器,2026怎么修改定
  • 短信驗證碼 寵物飼養 十大衛浴品牌排行 suno 豆包網頁版入口 wps 目錄網 排行網

    關于我們 | 打賞支持 | 廣告服務 | 聯系我們 | 網站地圖 | 免責聲明 | 幫助中心 | 友情鏈接 |

    Copyright © 2025 hfw.cc Inc. All Rights Reserved. 合肥網 版權所有
    ICP備06013414號-3 公安備 42010502001045

    国产人妻人伦精品_欧美一区二区三区图_亚洲欧洲久久_日韩美女av在线免费观看
    国产精品自拍偷拍| 91精品国产高清自在线看超| 国产精品成人一区| 国产成人精品视频在线| 国产黄色特级片| 久久香蕉视频网站| 久久综合九九| 国产成人福利视频| 国产不卡av在线| 69av在线视频| 国产激情片在线观看| 97成人精品视频在线观看| 97久久精品午夜一区二区| 91久久国产自产拍夜夜嗨 | 亚洲v欧美v另类v综合v日韩v| 欧美人与性动交| 亚洲一二三区精品| 日韩在线三区| 青春草国产视频| 欧美极品一区| 国产欧美一区二区在线播放| 成人黄色av网站| 久久五月天婷婷| 久久精品国亚洲| 精品久久久久久乱码天堂| 免费97视频在线精品国自产拍| 欧美成在线视频| 亚洲综合五月天| 日本一区视频在线观看| 欧美日本国产精品| 国产欧美在线观看| 国产二级片在线观看| 久久久精品视频在线观看| 国产精品免费在线| 在线观看亚洲视频啊啊啊啊 | 亚洲精品一卡二卡三卡四卡 | 国产一级二级三级精品| 成人av男人的天堂| 久久久久中文字幕2018| 久久夜色精品亚洲噜噜国产mv| 亚洲三区在线观看| 欧美性视频在线| 国产精品亚洲一区| 激情综合在线观看| 97成人在线视频| 国产精品视频成人| 亚洲不卡中文字幕| 狠狠综合久久av| 精品欧美一区二区精品久久 | 久久久久久久久综合| 一区二区三区一级片| 青青在线视频免费| av一区观看| 国产精品久久久久久久久久久久久 | 亚洲精品欧美日韩| 欧美亚州在线观看| 99国产视频在线| 久久综合电影一区| 欧美日本亚洲| 国产v综合v亚洲欧美久久| 一区二区精品在线观看| 极品日韩久久| 久久av一区二区三区亚洲| 在线视频精品一区| 麻豆成人av| 精品久久久av| 婷婷精品国产一区二区三区日韩 | 国产福利精品视频| 伊甸园精品99久久久久久| 欧美精品一区二区三区免费播放 | 欧美大码xxxx| 日韩精品资源| 91免费黄视频| 久久国产视频网站| 加勒比成人在线| 91精品国产沙发| 中文字幕久精品免| 国产视频一区二区视频| 久久视频这里只有精品| 日本不卡在线观看视频| 91国产精品91| 亚洲 高清 成人 动漫| 高清亚洲成在人网站天堂| 国产精品成人va在线观看| 国语自产精品视频在线看| 久久精品美女视频网站| 日韩黄色片在线| 久久久久久久有限公司| 日韩av电影国产| 久久国产精品久久| 色噜噜狠狠一区二区三区| av不卡在线免费观看| 中文字幕免费高| 成人在线观看a| 久久91精品国产| 国产日韩精品一区观看| 国产精品久久..4399| 含羞草久久爱69一区| 国产精品麻豆va在线播放| 欧美极品少妇无套实战| 国产精品视频免费在线观看| 黄色片网址在线观看| 国产精品激情自拍| 黄色三级中文字幕| 精品乱码一区| 国产男女激情视频| 欧美激情小视频| av在线com| 三级网在线观看| 久久99精品久久久久久水蜜桃| 日韩女在线观看| 日韩中文字幕在线视频| 妓院一钑片免看黄大片| 久久婷婷国产麻豆91天堂| 国产欧美在线一区二区| 一道本在线观看视频| 97精品视频在线观看| 日本三级韩国三级久久| 国产成人免费av| 国产在线精品91| 欧美精品福利视频| 国产精品 欧美在线| 日韩亚洲在线视频| 久久久国产在线视频| 国产在线精品一区二区三区》| 中文精品一区二区三区| 91精品国产99久久久久久红楼| 欧美一区二区.| 久久视频这里只有精品| 国产精品一区二区三区在线观| 亚洲一区二区不卡视频| 久久亚洲一区二区| 欧美精品久久久久久久免费| 在线观看欧美亚洲| www.欧美三级电影.com| 国产一区不卡在线观看| 三年中国中文在线观看免费播放| 国产精品吊钟奶在线| 91精品国产成人| 极品美女扒开粉嫩小泬| 亚洲欧美日韩不卡| 国产精品视频免费观看| 91精品免费| 黄色国产精品视频| 五月天亚洲综合情| 国产精品久久av| 久久久欧美精品| 国产无限制自拍| 秋霞毛片久久久久久久久| 欧美激情18p| 国产l精品国产亚洲区久久| 欧美日韩一道本| 午夜精品三级视频福利| 国产精品成av人在线视午夜片| 国产成人jvid在线播放| 国产精品又粗又长| 黄色一级在线视频| 色哺乳xxxxhd奶水米仓惠香| 欧美区在线播放| 国产精品美女xx| 国产va免费精品高清在线| 国产精品亚洲综合| 国内精品中文字幕| 日韩人妻无码精品久久久不卡 | 久久精品国产精品亚洲精品色| 国产午夜伦鲁鲁| 欧美成人综合一区| 日本手机在线视频| 亚洲av首页在线| 永久久久久久| 久操成人在线视频| 国产精品美女无圣光视频| 视频在线一区二区| 久久精品日产第一区二区三区| 99热国产免费| 国产精品国产三级国产专播精品人| 91国产美女视频| 成人a级免费视频| 国产一区二区在线网站| 欧美日韩大片一区二区三区| 日韩精品伦理第一区| 熟女少妇在线视频播放| 午夜精品亚洲一区二区三区嫩草| 亚洲尤物视频网| 亚洲自拍的二区三区| 一区二区精品在线观看| 亚洲最大福利网站| 综合色婷婷一区二区亚洲欧美国产| 国产99久久精品一区二区| 久久综合88中文色鬼| 欧美日韩国产123| 国产精品久久久久久一区二区| 精品国产欧美成人夜夜嗨| 日韩中文字幕在线免费观看| 精品国产一区二区三区久久狼黑人 | www.欧美黄色| av资源一区二区| 97精品视频在线观看| 久久综合九色欧美狠狠| 国产成人91久久精品|