using System.Collections.Generic;
using System.Threading.Tasks;
static void Main(string[] args)
Console.WriteLine("Hello Welcome to the book store! \n What would you like to buy?");
Console.WriteLine("[1] Book ");
Console.WriteLine("[2] Pencils");
Console.WriteLine("[3] Bookmarks");
int MainMenuSelection = int.Parse(Console.ReadLine());
private double MoneyGiven;
public Customer(string name, string address, double money)
public string NameProperties
public string AddressProperties
public double MoneyProperties
get { return MoneyGiven; }
set { MoneyGiven = value; }
private int DatePublished;
public Book(string title, string author, int datePublished)
DatePublished = datePublished;
public string TitleProperties
public string AuthorProperties
public int DatePublishedProperties
get { return DatePublished; }