public Account(int newAccID, Customer newCustomer) { accID = newAccID; customer = newCustomer; joinFee = 20; rentFee = 0; lateFee = 0; }
public StockItem(int newStockID, Game newGame, Customer newCustomer) { stockID = newStockID; game = newGame; customer = newCustomer; isRented = false; isReserved = false; issueDate = new DateTime(); dueDate = new DateTime(); }
public StockItem(int newStockID, DateTime newIssueDate, DateTime newDueDate, bool newIsRented, bool newIsReserved, bool newIsDamaged, Game newGame, Customer newCustomer) { stockID = newStockID; game = newGame; customer = newCustomer; isRented = newIsRented; isReserved = newIsReserved; issueDate = newIssueDate; dueDate = newDueDate; }
public bool RentGame(Customer customer, DateTime issueDate, DateTime dueDate) { //--Code Here--// return true; }