public CompanyRegisterController(
     ICaptchaValidationService captchaValidationService,
     ICompanyRegisterService companyRegisterService,
     ISignInResponseProvider signInResponseProvider)
 {
     _captchaValidationService = captchaValidationService;
     _companyRegisterService   = companyRegisterService;
     _signInResponseProvider   = signInResponseProvider;
 }
 public UserApiController(IUserRegisterService userRegisterService,
                          IUserRoleService userRoleService,
                          IUserService userService,
                          IRequestResponseFactory requestResponseFactory,
                          ICustomAuthorizeService customAuthorizeService,
                          ICompanyRegisterService companyRegisterService,
                          IRegisterService registerService)
 {
     this.requestResponseFactory = requestResponseFactory;
     this.userRegisterService    = userRegisterService;
     this.userRoleService        = userRoleService;
     this.customAuthorizeService = customAuthorizeService;
     this.userService            = userService;
     this.companyRegisterService = companyRegisterService;
     this.registerService        = registerService;
 }