public IActionResult ApproveCounsellor(int id)
        {
            bool success = adminDAL.ApproveCounsellor(id);

            return(RedirectToAction("PendingCounsellor"));
        }