コード例 #1
0
        public NoticeProviderSelector(IDCWageNotifier dcNotifier, ITestNotifier testNotifier)
        {
            _dcNotifier   = dcNotifier;
            _testNotifier = testNotifier;

            _mandateProviderMap = new Dictionary <Mandate, INoticeProvider>()
            {
                { Mandate.DCWageNotifications, _dcNotifier },
                { Mandate.TestNotifications, _testNotifier }
            };
        }
コード例 #2
0
 public UserSignedInHandler(ITestNotifier testNotifier)
 {
     _testNotifier = testNotifier;
 }
コード例 #3
0
 public NotificationsController(ITestNotifier testNotifier)
 {
     _testNotifier = testNotifier;
 }