Пример #1
0
 public CalendarSubscriptionFunction(IUcquClient client, IDataAccessService dataService, ICalendarService calService, ILocalizationService locService)
 {
     this.client      = client;
     this.dataService = dataService;
     this.calService  = calService;
     this.locService  = locService;
 }
Пример #2
0
 public SignInFunction(ITokenService tokenService, IUcquClient client, IDataAccessService dataService, ILocalizationService localizationService, IConfiguration config)
 {
     this.tokenService  = tokenService;
     this.client        = client;
     this.dataService   = dataService;
     this.locService    = localizationService;
     serviceBaseAddress = config.GetValue <string>("Host:ServiceBaseAddress");
 }
Пример #3
0
 public RefreshFunctionHandlerService(IUcquClient client, IDataAccessService dataService)
 {
     this.client      = client;
     this.dataService = dataService;
 }
Пример #4
0
 public GetFunctionHandlerService(IUcquClient client, IDataAccessService dataService, ILocalizationService locService)
 {
     this.client      = client;
     this.dataService = dataService;
     this.locService  = locService;
 }