Пример #1
0
 public UpdateJobController(Service.Services.UpdateService UpdateService, Service.Services.Analytics.BaseAnalyticsService AnalyticsService, IBackgroundJobClient backgroundJobs, IHostingEnvironment hostingEnvironment)
 {
     _UpdateService      = UpdateService;
     _AnalyticsService   = AnalyticsService;
     _backgroundJobs     = backgroundJobs;
     _hostingEnvironment = hostingEnvironment;
 }
Пример #2
0
 public BaseLicenseService(BaseAnalyticsService AnalyticsService, Service.Services.UpdateService UpdateService, string CustomerID, string CustomerName)
 {
     this._CustomerID       = CustomerID;
     this._CustomerName     = CustomerName;
     this._AnalyticsService = AnalyticsService;
     this._UpdateService    = UpdateService;
 }