All the necessary functionality for the Cover Art repo added #51

This commit is contained in:
amazing-username
2019-07-10 17:54:17 -04:00
parent f7963237fd
commit 4940768d22
+2 -20
View File
@@ -77,29 +77,11 @@ namespace Icarus.Database.Repositories
public bool DoesCoverArtExist(CoverArt cover)
{
try
{
// TODO: Implement this
}
catch (Exception ex)
{
var msg = ex.Message;
}
return false;
return GetCoverArt(cover) != null ? true : false;
}
public bool DoesCoverArtExist(Song song)
{
try
{
// TODO: Implement this
}
catch (Exception ex)
{
var msg = ex.Message;
}
return false;
return GetCoverArt(song) != null ? true : false;
}
public void SaveCoverArt(CoverArt coverArt)