Example #1
0
        private DataTable GetAllList(HttpContext context)
        {
            int adminUserId = 0;

            try { adminUserId = int.Parse(context.Request.QueryString["adminUserId"]); }
            catch { }
            return(dal.GetAllList(adminUserId));
        }