Ejemplo n.º 1
0
        public DataTable SelBy(M_Favorite model)
        {
            string strsql = "SELECT * FROM ZL_Favorite WHERE [Owner]=@Owner AND [InfoID]=@InfoID AND [FavoriType]=@FavoriType";

            SqlParameter[] sp = model.GetParameters();
            return(SqlHelper.ExecuteTable(CommandType.Text, strsql, sp));
        }
Ejemplo n.º 2
0
 public int insert(M_Favorite model)
 {
     return(Sql.insertID(TbName, model.GetParameters(), BLLCommon.GetParas(model), BLLCommon.GetFields(model)));
 }
Ejemplo n.º 3
0
 public bool UpdateByID(M_Favorite model)
 {
     return(Sql.UpdateByIDs(TbName, PK, model.FavoriteID.ToString(), BLLCommon.GetFieldAndPara(model), model.GetParameters()));
 }
Ejemplo n.º 4
0
 /// <summary>
 /// 添加收藏信息到收藏夹
 /// </summary>
 /// <param name="favorite">收藏信息实例</param>
 public void AddFavorite(M_Favorite model)
 {
     Sql.insertID(TbName, model.GetParameters(), BLLCommon.GetParas(model), BLLCommon.GetFields(model));
 }