/// <summary> /// Removes a existing product /// </summary> public void DeleteProduct(int productId) { try { ProductDALC productDALC = new ProductDALC(); productDALC.DeleteProduct(productId); } catch (Exception e) { throw new ApplicationException(ResourceManager.GetString("RES_ExceptionCantDeleteProduct"), e); } }