Question: NOTE: PLEASE DO THAT ON C# CODING AND COMPLETELY DONE. ONE OF THE EXPERTS SEND ME THE FIRST TWO PARTS AND DIDNT FINISHED THE REST!!!!!!!!
NOTE: PLEASE DO THAT ON C# CODING AND COMPLETELY DONE. ONE OF THE EXPERTS SEND ME THE FIRST TWO PARTS AND DIDNT FINISHED THE REST!!!!!!!!
Assignment Objective The purpose of this assignment is to practice flexible design, read a csv file from disc, store the data in a collection of objects and print the results in natural and sorted order. Your Task 1. Name your project COMP3602Assign04 2. Define an abstract class named Item 3. Implement the following public property methods in class Item: (use appropriate datatypes) Description (read-write) Price (read-write) Sku (read-only) 4. Include the necessary code to support sorting by Price descending in Item 5. Define a class named GroceryItem in a separate source file that inherits from Item 6. Ensure that the following public property methods are available for GroceryItem: objects (use appropriate datatypes): Description (read-write) Price (read-write) Sku (read-only) ExpirationDate (read-only) 7. Declare class GroceryItem's ExpirationDate as a DateTime type 8. Define a class named ApplianceItem in a separate source file that inherits from Item 9. Ensure that the following public property methods are available for ApplianceItem: objects (use appropriate datatypes): Description (read-write) Price (read-write) Sku (read-only) ApplianceType (read-only)
10. ApplianceType should be of an enum type that you create with the following labels: Washer, Dryer, Dishwasher, Oven, Range, Refrigerator 11. Define a class named ItemList (derived from List


For all your code, be sure to: Comment your code intelligently (no need to comment the obvious)
ITEMS.csv file
{4L Milk,345345,3.87,2019/10/14 500g Cottage Cheese,452255,4.28,2019/11/9 1 Tin Mushroom Soup,744566,0.99 SuperValu QuickWash, 997546, 499.99, Washer 15kg Dog Food,234434,29.99,2021/2/19 RayMag Crystal Clean Dishwasher, 993442, 649.99, Dishwasher RayMag Crystal Clean Dishwasher (Sale), 993442, 449.99, Dishwasher}
Design
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
