Kaffeplaneten.BLL.ProductBLL.delete C# (CSharp) Method

delete() public method

public delete ( int id ) : bool
id int
return bool
        public bool delete(int id)
        {
            return _productDAL.Delete(id);
        }