Able to retrieve single and multiple records (Album, Artist, Genre, Year)

This commit is contained in:
kdeng00
2019-09-07 12:00:12 -04:00
parent e9241cf6a5
commit 7ec88397c0
15 changed files with 587 additions and 15 deletions
+9
View File
@@ -31,6 +31,9 @@ namespace model
struct Artist
{
Artist() = default;
Artist(const int id) : id(id) { }
int id;
std::string artist;
};
@@ -48,6 +51,9 @@ namespace model
struct Genre
{
Genre() = default;
Genre(const int id) : id(id) { }
int id;
std::string category;
@@ -55,6 +61,9 @@ namespace model
struct Year
{
Year() = default;
Year(const int id) : id(id) { }
int id;
int year;
};