public ActionResult GetActiveUsersExceptSuperAdmin(string usernames) { try { return(Json(_userMaster.GetAllUsersExceptSuperAdmin(usernames), JsonRequestBehavior.AllowGet)); } catch (Exception) { throw; } }