public void PayLateFee(Customer customer, decimal feePaid)
 {
     // code to pay late fee
 }
 public bool CanRentVideo(Customer customer)
 {
     return customer.RentedVideos.Count() < 3;
 }