public async Task <ActionResult <ApiResponse <ShippingMethod> > > Delete(string shippingMethodId)
        {
            try
            {
                var deletedShippingMethod = await _shippingMethodService.RemoveById(shippingMethodId);

                return(deletedShippingMethod.CreateSuccessResponse("Shipping method deleted successfully!"));
            }
            catch (Exception exception)
            {
                return(BadRequest(exception.CreateErrorResponse()));
            }
        }