Question: Customer Cs File code: Program.Cs file attached Program Description In this assignment, you will develop a Console Application related to a simple library system The


Customer Cs File code:
Program.Cs file attached


Program Description In this assignment, you will develop a Console Application related to a simple library system The figure below shows the class diagram for the system. Note that I have not shown the attributes, properties, and methods in the diagram below. Library Customer Book You must develop code for all the following classes as described 1. Create a new project called A3_YourLastNameYourFirstName. 2. Add a class called Customer to the project by right-clicking on the project in the Solutions Explorer and then selecting Add > New Item > Class Copy the code from Customer.cs file provided to you into this class 3. Add a class called Book and add code for the following: a. private attributes: int catalogNumber-book's catalog number string title - book's title string authors - book's authors Customer c - reference to the customer to who the book is issued, if at all e . public properties: CatalogNumber with only the get part c. Public methods: . Book(string title, string authors, int catalogNo) - constructor that initializes the title, author and catalog number attributes to the values passed
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
