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