public IActionResult Delete(string userName) { try { _signService.DeleteUser(userName); return(new NoContentResult()); } catch (Exception ex) { return(NotFound(ex.Message)); } }