public JsonResult GetFilteredUsers(string division_Code, string user_Type_Code) { try { BLUser objUser = new BLUser(); _objCurrentInfo = new CurrentInfo(); string company_Code = _objCurrentInfo.GetCompanyCode(); IEnumerable <DivisionUserProducts> IlstUsers = objUser.GetUserBasedOnDivisionAndUserType(company_Code, division_Code, user_Type_Code); return(Json(IlstUsers)); } catch { throw; } }