Mover Cover Art work. #50

This commit is contained in:
amazing-username
2019-07-11 23:15:45 -04:00
parent 4940768d22
commit 226ca44206
2 changed files with 72 additions and 15 deletions
+37
View File
@@ -0,0 +1,37 @@
using System;
using System.Collections.Generic;
using Icarus.Controllers.Utilities;
using Icarus.Database.Repositories;
using Icarus.Models;
namespace Icarus.Controllers.Managers
{
public class CoverArtManager : BaseManager
{
#region Fields
private string _rootCoverArtPath;
#endregion
#region Constructors
public CoverArtManager(string rootPath)
{
_rootCoverArtPath = rootPath;
}
#endregion
#region Methods
public bool SaveCoverArt(Song song)
{
// TODO: Implement functionality to save
// cover art to the filesystem. The result
// will determine if the the cover art record will
// be saved to the DB
return false;
}
#endregion
}
}