public IActionResult SearchEVisaMerchant([FromQuery] EVisaMerchantSearchModel model)
        {
            var response = _eVisaMerchantService.SearchEVisaMerchant(model);

            if (response != null)
            {
                return(Ok(response));
            }
            return(BadRequest());
        }