コード例 #1
0
ファイル: Product.cs プロジェクト: helo12/Lab6
        public static void Delete(Product id, string cnString)
        {
            ProdcuctDB db = new ProdcuctDB(cnString);

            db.Delete((IBaseProps)id);
        }
コード例 #2
0
ファイル: Product.cs プロジェクト: helo12/Lab6
        /// <summary>
        /// Deletes the customer identified by the id.
        /// </summary>
        public static void Delete(Product id)
        {
            ProdcuctDB db = new ProdcuctDB();

            db.Delete((IBaseProps)id);
        }