Ejemplo n.º 1
0
        public static bool Delete(Int32 productId, Int32 kitComponentId)
        {
            ProductKitComponent productKitComponent = new ProductKitComponent();

            if (productKitComponent.Load(productId, kitComponentId))
            {
                return(productKitComponent.Delete());
            }
            return(false);
        }