Hey guys , i need some expert to help me do this assignment cuz i know a little about Java
Write a java program for a Bookstore using 2 classes: class Book, class Customer.
Class Book:
Each object of class Book can hold the following information about a book: price and title.
Include the accessor methods for instance variables.
Instance variables initialization is done using the constructor
Class Customer
Object of Customer represents a customer of a book store who can purchase books
Object of Customer can hold the name of person, member ID and amount spent.
name & member ID variables are initialized using the constructor
Include the accessor methods for instance variables
Method purchaseBook receives object of type Book, use this object to get the price of the book and increment
the variable amount spent with this price