Esempio n. 1
0
        //Single Device Lock Release
        public JsonResult GetSingleDeviceEntriesByGuid(string LoginUserCode)
        {
            IEnumerable <SingleDeviceGUID> lstUser = new List <SingleDeviceGUID>();

            try
            {
                BLUser objDept = new BLUser();
                lstUser = objDept.GetSingleDeviceEntriesByGuid(LoginUserCode).ToList();
            }
            catch (Exception ex)
            {
                Dictionary <string, string> dicContext = new Dictionary <string, string>();
                DataControl.Impl.ExceptionHandler.WriteLog(ex, dicContext);
            }
            return(Json(lstUser, JsonRequestBehavior.AllowGet));
        }