Переименовываем файлы в нижний регистр
This commit is contained in:
12
src/services/author_service.cpp
Normal file
12
src/services/author_service.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
// #define BUILD_SERVICES
|
||||
#include "author_service.h"
|
||||
|
||||
QVector<model::Author> AuthorService::fetchAll()
|
||||
{
|
||||
return AuthorRepository::getAll();
|
||||
}
|
||||
|
||||
bool AuthorService::add(const model::Author& author)
|
||||
{
|
||||
return AuthorRepository::insert(author);
|
||||
}
|
||||
Reference in New Issue
Block a user