Esempio n. 1
0
 public IQueryable <Tuple <string, int, string> > GetVotesMo(string typeVote, string apiname)
 {
     return(voteService.DeleteVote(typeVote, apiname));
 }
Esempio n. 2
0
 public static void DeleteVote(string strID)
 {
     VoteItemBLL.DeleteVoteItemByVoteID(strID);
     dal.DeleteVote(strID);
 }
Esempio n. 3
0
 /// <summary>
 /// 删除多条投票数据
 /// </summary>
 /// <param name="strID">投票的主键值,以,号分隔</param>
 public static void DeleteVote(int[] strID)
 {
     CacheHelper.Remove(cacheKey);
     //VoteItemBLL.DeleteVoteItemByVoteID(strID);
     dal.DeleteVote(strID);
 }