public ApiLoginService(IRestApiHelper restApiHelper, ICookieHelperService helperService)
 {
     this.restApiHelper = restApiHelper;
     this.helperService = helperService;
 }
 public ApiAuthenticationController(IApiLoginService apiLoginService, ICookieHelperService helperService, IStringLocalizer <ApiResponcesShared> sharedLocalizer)
 {
     this.apiLoginService = apiLoginService;
     this.helperService   = helperService;
     this.sharedLocalizer = sharedLocalizer;
 }