Kooboo.Commerce.Shipping.ShippingMethodService.Delete C# (CSharp) Method

Delete() public method

public Delete ( ShippingMethod method ) : void
method ShippingMethod
return void
        public void Delete(ShippingMethod method)
        {
            if (method.IsEnabled)
            {
                Disable(method);
            }

            _repository.Delete(method);
        }