コード例 #1
0
 public void PayLateFee(Customer customer, decimal feePaid)
 {
     // code to pay late fee
 }
コード例 #2
0
 public bool CanRentVideo(Customer customer)
 {
     return customer.RentedVideos.Count() < 3;
 }