public JsonResult AddNewListCardSub(string listId)
        {
            var list = _tblCardService.GetAllActiveByListId(listId).ToList();

            if (list.Any())
            {
                GetSetFromSession(list);
            }

            return(Json("", JsonRequestBehavior.AllowGet));
        }