public UsersController(IUserReadService userReadService, IUserCommandService userCommandService, IVacancyCommandService vacancyCommandService, IVacancyReadService vacancyReadService, ITokenHelper tokenHelper, IOptionReadService optionReadService)
 {
     this.userReadService       = userReadService;
     this.userCommandService    = userCommandService;
     this.vacancyReadService    = vacancyReadService;
     this.vacancyCommandService = vacancyCommandService;
     this.tokenHelper           = tokenHelper;
     this.optionReadService     = optionReadService;
 }
 public VacanciesController(IVacancyReadService vacancyReadService, IVacancyCommandService vacancyCommandService)
 {
     this.vacancyReadService    = vacancyReadService;
     this.vacancyCommandService = vacancyCommandService;
 }