Exemplo n.º 1
0
        public bool DeleteProduct(int id)
        {
            //Add validations here!
            ProductError result = ProductError.None;

            if (id <= 0)
            {
                result |= ProductError.InvalidId;
            }

            if (result != ProductError.None)
            {
                throw new ProductException(result);
            }
            else
            {
                return(productDL.DeleteProduct(id));
            }
        }
Exemplo n.º 2
0
        /// <summary>
        /// Hàm xóa Sản phẩm
        /// </summary>
        /// <param name="productID">Id Sản phẩm</param>
        /// <returns>Trạng thái xóa</returns>
        /// Người tạo: ntxuan (20/6/2019)
        public int DeleteProduct(Guid productID)
        {
            var productId = Common.ConvertToNvarchar(productID);

            return(productDL.DeleteProduct(productId));
        }