Ejemplo n.º 1
0
        public string updateAlphaApplyRecord(int id, int status)
        {
            string ip   = HttpContext.Request.UserHostAddress;
            int    opid = 0;

            if (Session["logUser"] != null)
            {
                ManageUserModel uM = (ManageUserModel)Session["logUser"];
                opid = uM.UserID;
            }
            return(AlphaApply.UpdateWithdrawalStatus(id, status, ip, opid));
        }
Ejemplo n.º 2
0
 public string getAlphaApplyRecord(int pageIndex = 1, int alphaStatus = -99, string userPhone = "", string accId = "", string start = "", string end = "", string alphaVersion = "")
 {
     return(AlphaApply.GetAlphaApplyRecord(pageIndex, alphaStatus, userPhone, accId, start, end, alphaVersion));
 }