customer can be saved into db

This commit is contained in:
MassiveAtoms
2019-06-26 15:12:23 -03:00
parent 2e22008040
commit f11ebc6a9c
7 changed files with 75 additions and 36 deletions

6
headers/data.h Normal file
View File

@ -0,0 +1,6 @@
#include "../thirdparty/SQLiteCpp/include/SQLiteCpp/SQLiteCpp.h"
#include "Customer.h"
namespace data {
SQLite::Database start_db();
}