public SectionsController(
     IProjectsServices projectServices,
     ILanguagesService langService,
     IPhrasesContextServices phrsContService,
     ITokenContainer tokenContainer)
 {
     this.projectServices = projectServices;
     this.langService     = langService;
     this.phrsContService = phrsContService;
     this.tokenContainer  = tokenContainer;
 }
 public HomeController(
     IProjectsServices projectServices,
     ILanguagesService langService,
     IPhrasesContextServices phrsContService,
     ITokenContainer tokenContainer,
     ISystemStabilityLoggsService systemStabilityLoggsService,
     IManifestService manifestService)
 {
     this.projectServices             = projectServices;
     this.langService                 = langService;
     this.phrsContService             = phrsContService;
     this.tokenContainer              = tokenContainer;
     this.systemStabilityLoggsService = systemStabilityLoggsService;
     this.manifestService             = manifestService;
 }
 public ProjectsController(IProjectsServices projectServices)
 {
     this.projectServices = projectServices;
 }