public InterestTaxControllerUnitTest()
 {
     _interestTaxRepository = Substitute.For <IInterestTaxRepository>();
     _notification          = new NotificationHandler();
 }
Beispiel #2
0
 public InterestTaxController(
     INotificationHandler notification,
     IInterestTaxRepository interestTaxRepository) : base(notification)
 {
     _interestTaxRepository = interestTaxRepository;
 }