コード例 #1
0
ファイル: CalendarSubscription.cs プロジェクト: DL444/ucqu-ng
 public CalendarSubscriptionFunction(IUcquClient client, IDataAccessService dataService, ICalendarService calService, ILocalizationService locService)
 {
     this.client      = client;
     this.dataService = dataService;
     this.calService  = calService;
     this.locService  = locService;
 }
コード例 #2
0
ファイル: SignIn.cs プロジェクト: DL444/ucqu-ng
 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;
 }