public void PayLateFee(Customer customer, decimal feePaid)
 {
     CustomerAccount.PayLateFee(customer, feePaid);
 }
 public bool CanRentVideo(Customer customer)
 {
     return CustomerAccount.CanRentVideo(customer);
 }