コード例 #1
0
ファイル: user_point_log.cs プロジェクト: WayLeeLi/Tea
        /// <summary>
        /// 删除一条数据
        /// </summary>
        public bool Delete(int id)
        {
            int  c = GetModel(id).user_id;
            bool b = dal.Delete(id);

            new Tea.BLL.users().JiSuan(c);
            return(b);
        }
コード例 #2
0
ファイル: user_point_log.cs プロジェクト: xcpt/WeService
 /// <summary>
 /// 删除一条数据
 /// </summary>
 public bool Delete(int id)
 {
     return(dal.Delete(id));
 }
コード例 #3
0
 /// <summary>
 /// 根据删除一条数据
 /// </summary>
 public bool Delete(int id, string user_name)
 {
     return(dal.Delete(id, user_name));
 }