Exemplo n.º 1
0
        public JsonResult DropList(string filter)
        {
            if (HttpContext.Cache["CodeTableDropList"] == null)
            {
                CodeTableRepository   rep  = new CodeTableRepository();
                List <DropListSource> list = rep.DropList();
                HttpContext.Cache.Add("CodeTableDropList", list, null, DateTime.Now.AddMinutes(5), TimeSpan.Zero, CacheItemPriority.High, null);
            }
            List <DropListSource> dropList = (List <DropListSource>)HttpContext.Cache["CodeTableDropList"];

            return(DropListJson(dropList, filter));
        }
Exemplo n.º 2
0
        public JsonResult AssetsIdleStateDropList()
        {
            string filter = "AssetsState";

            if (HttpContext.Cache["CodeTableDropList"] == null)
            {
                CodeTableRepository   rep  = new CodeTableRepository();
                List <DropListSource> list = rep.DropList();
                HttpContext.Cache.Add("CodeTableDropList", list, null, DateTime.Now.AddMinutes(5), TimeSpan.Zero, CacheItemPriority.High, null);
            }
            List <DropListSource> dropList  = (List <DropListSource>)HttpContext.Cache["CodeTableDropList"];
            List <DropListSource> dropList2 = dropList.Where(m => m.Filter == filter && (m.Value == "A" || m.Value == "X")).ToList();

            return(DropListJson(dropList2, ""));
        }