예제 #1
0
        public static bool GiftUserIDSel(int iUserID, string sGameName)
        {
            string sRes = FirstGiftDAL.GiftUserIDSel(iUserID, sGameName);

            if (sRes.Length > 0)
            {
                return(false);
            }
            else
            {
                return(true);
            }
        }
예제 #2
0
 public static int GiftStateUpate(int iUserID, string sGameName, int iState)
 {
     return(FirstGiftDAL.GiftStateUpate(iUserID, sGameName, iState));
 }
예제 #3
0
 public static string GiftStateSel(int iUserID, string sGameName)
 {
     return(FirstGiftDAL.GiftStateSel(iUserID, sGameName));
 }
예제 #4
0
 public static int GiftAdd(int iUserID, int iLevel, string sGameName)
 {
     return(FirstGiftDAL.GiftAdd(iUserID, iLevel, sGameName));
 }