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