예제 #1
0
 public ClientDemoService(
     INotificationsAppService sampleAppService,
     IIdentityModelAuthenticationService authenticationService,
     IConfiguration configuration)
 {
     _sampleAppService      = sampleAppService;
     _authenticationService = authenticationService;
     _configuration         = configuration;
 }
 public SampleAppService_Tests()
 {
     _sampleAppService = GetRequiredService <INotificationsAppService>();
     _currentUser      = GetRequiredService <ICurrentUser>();
 }
 public NotificationsController(INotificationsAppService notificationAppService)
 {
     _notificationsAppService = notificationAppService;
 }