public async Task <ActionResult <ApiResponse <List <ShippingMethod> > > > GatShippingMethodList([FromQuery] Query query)
        {
            try
            {
                var pagedShippingMethodList = await _shippingMethodService.GetList(query);

                return(pagedShippingMethodList.CreateSuccessResponse());
            }
            catch (Exception exception)
            {
                return(BadRequest(exception.CreateErrorResponse()));
            }
        }