Continuing working on the Genre and Year API functionalty. #41 and #42

This commit is contained in:
amazing-username
2019-05-15 20:54:52 -04:00
parent 2a69392d98
commit 8f6364922b
2 changed files with 89 additions and 0 deletions
+14
View File
@@ -28,6 +28,20 @@ namespace Icarus.Models.Context
#region Methods
public List<Year> GetSongYear()
{
var yearValues = new List<Year>();
using (var conn = GetConnection())
{
conn.Open();
var query = "SELECT * FROM Year";
// TODO: Left off here for the YearStore
}
return yearValues;
}
#endregion
}
}