Exemplo n.º 1
0
 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;
 }
Exemplo n.º 2
0
 public UserCommandService(IUserRepository userRepository, IMapper mapper,
                           IMapAPIReadService mapAPIReadService, IUserReadService userReadService,
                           IMailClient mailClient, IOptionReadService optionReadService, IConfiguration config)
 {
     this.userRepository    = userRepository;
     this.mapper            = mapper;
     this.mapAPIReadService = mapAPIReadService;
     this.queryBuilder      = new QueryBuilder();
     this.userReadService   = userReadService;
     this.mailClient        = mailClient;
     this.optionReadService = optionReadService;
     this.config            = config;
 }
Exemplo n.º 3
0
 public OptionsController(IOptionReadService reviewReadService)
 {
     _optionReadService = reviewReadService;
 }