Example 1
did not renderSebastianJSno browser
Did not renderNo diagram type detected matching given configuration for text: zenuml
mermaid-cliheadless Chrome
Mermaid source
zenuml
BookLibService.Borrow(id) {
User = Session.GetUser()
if(User.isActive) {
try {
BookRepository.Update(id, onLoan, User)
receipt = new Receipt(id, dueDate)
} catch (BookNotFoundException) {
ErrorService.onException(BookNotFoundException)
} finally {
Connection.close()
}
}
return receipt
}