All the necessary functionality for the Cover Art repo added #51
This commit is contained in:
@@ -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)
|
||||||
|
|||||||
Reference in New Issue
Block a user