Exemplo 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);
        }
Exemplo n.º 2
0
 public static bool Delete(ProductKitComponent productKitComponent)
 {
     return(productKitComponent.Delete());
 }