Пример #1
0
 public ChartManager(IBackendService backendService, IFrontendService frontendService, IDatabaseService databaseService, IDevopsService devopsService)
 {
     _backendService  = backendService;
     _frontendService = frontendService;
     _databaseService = databaseService;
     _devopsService   = devopsService;
 }
Пример #2
0
 public HomeController(IFrontendService frontendService, ILogService logService, ApplicationContext applicationContext)
 {
     this._frontendService   = frontendService;
     this._logService        = logService;
     this.applicationContext = applicationContext;
 }
 public FrontendController(IFrontendService frontendService)
 {
     _frontendService = frontendService;
 }