// #define BUILD_SERVICES #include "AuthorService.h" QVector AuthorService::fetchAll() { return AuthorRepository::getAll(); } bool AuthorService::add(const model::Author& author) { return AuthorRepository::insert(author); }