Beispiel #1
0
 public IActionResult changePassword([FromBody] tempService customer)
 {
     if (ch.changePassWord(customer))
     {
         return(Ok(ch.Get(customer.username)));
     }
     else
     {
         return(Ok(false));
     }
 }