Example #1
0
 public TranslatorController(ICurrentUserService currentUserService,
                             ITranslatorService translatorService,
                             ITranslatorGroupService translatorGroupService,
                             IBus publisher)
 {
     this.currentUserService     = currentUserService;
     this.translatorService      = translatorService;
     this.translatorGroupService = translatorGroupService;
     this.publisher = publisher;
 }
Example #2
0
 public TranslatorGroupController(ITranslatorGroupService translatorGroupService)
 {
     this.translatorGroupService = translatorGroupService;
 }