示例#1
0
 public void SetupScenario()
 {
     _transactionNotifications = A.Fake <ITransactionNotifications>();
     _paymentService           = new PaymentService(_transactionNotifications);
 }
示例#2
0
 public PaymentService(ITransactionNotifications notifier)
 {
     _notifier = notifier;
 }