Kooboo.Commerce.Products.ProductTypeService.Delete C# (CSharp) Метод

Delete() публичный Метод

public Delete ( ProductType type ) : void
type ProductType
Результат void
        public void Delete(ProductType type)
        {
            Disable(type);
            _productTypes.Delete(type);
            Event.Raise(new ProductTypeDeleted(type), _instance);
        }