示例#1
0
 public PhrasesController(ILanguagesService langService,
                          IPhrasesService phrasesService,
                          IPhrasesContextServices phrasesContextService)
 {
     this.langService           = langService;
     this.phrasesService        = phrasesService;
     this.phrasesContextService = phrasesContextService;
 }
 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 ContextsController(IPhrasesContextServices contextServices)
 {
     this.contextServices = contextServices;
 }
 public DocMultilanguageController(IPhrasesContextServices contextServices, ILanguagesService languagesService)
 {
     this.contextServices  = contextServices;
     this.languagesService = languagesService;
 }
示例#6
0
 public ResourcesController(IPhrasesService phrasesService, IPhrasesContextServices contextServices, ILanguagesService languagesService)
 {
     this.phrasesService   = phrasesService;
     this.contextServices  = contextServices;
     this.languagesService = languagesService;
 }