/// <summary> /// Deletes a Product by ID /// </summary> /// <param name="id">Int ID of the Product</param> /// <returns>Returns true if the operation has been successfull, othewrise returns false</returns> protected Boolean deleteProduct(int id) { Products product = new Products(); return product.deleteProductByID(id); }