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) public bool DoesCoverArtExist(CoverArt cover)
{ {
try return GetCoverArt(cover) != null ? true : false;
{
// TODO: Implement this
}
catch (Exception ex)
{
var msg = ex.Message;
}
return false;
} }
public bool DoesCoverArtExist(Song song) public bool DoesCoverArtExist(Song song)
{ {
try return GetCoverArt(song) != null ? true : false;
{
// TODO: Implement this
}
catch (Exception ex)
{
var msg = ex.Message;
}
return false;
} }
public void SaveCoverArt(CoverArt coverArt) public void SaveCoverArt(CoverArt coverArt)