public IActionResult ChangePassword(string opwd, string npwd, string userid) { try { return(Ok(userBll.ChangePassword(opwd, npwd, userid))); } catch (Exception ex) { return(NotFound(ex.Message)); } }