예제 #1
0
 public void UpdateCreated(IBill bill, DateTime created)
 {
     ExceptionHelper.ThrowIfNull(bill, "bill");
     if (bill.Created != created)
     {
         bill.UpdateCreated(_User, created);
         _BillRepository.SaveChanges();
     }
 }