コード例 #1
0
def getBooksByAuthor(catalog, authorname):
    """
    Retrona los libros de un autor
    """
    author = model.getBooksByAuthor(catalog, authorname)
    return author
コード例 #2
0
def getBooksByAuthor(control, authorname):
    """
    Retrona los libros de un autor
    """
    author = model.getBooksByAuthor(control['model'], authorname)
    return author
コード例 #3
0
def getBooksByAuthor(catalog, authorname):
    author = model.getBooksByAuthor(catalog, authorname, compareauthors)
    return author
コード例 #4
0
def getBooksByAuthor(ctrlr, authorname):
    """
    Retorna los libros de un autor
    """
    authorinfo = model.getBooksByAuthor(ctrlr['model'], authorname)
    return authorinfo