public async Task <ActionResult <ApiResponse <ShippingMethod> > > Get(String shippingMethodId)
        {
            try
            {
                var shippingMethod = await _shippingMethodService.GetById(shippingMethodId);

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