示例#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
文件: 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;
 }
 public GetFunctionHandlerService(IUcquClient client, IDataAccessService dataService, ILocalizationService locService)
 {
     this.client      = client;
     this.dataService = dataService;
     this.locService  = locService;
 }