Removed some dead code on the interfaces. Introduced UnitOfWork to simplify repo injection.
This commit is contained in:
parent
4a2296a18a
commit
825afd83a2
23 changed files with 165 additions and 204 deletions
|
|
@ -13,13 +13,8 @@ namespace API.Interfaces
|
|||
/// <returns>List of folder names</returns>
|
||||
IEnumerable<string> ListDirectory(string rootPath);
|
||||
|
||||
/// <summary>
|
||||
/// Lists out top-level files for a given directory.
|
||||
/// TODO: Implement ability to provide a filter for file types (done in another implementation on DirectoryService)
|
||||
/// </summary>
|
||||
/// <param name="rootPath">Absolute path </param>
|
||||
/// <returns>List of folder names</returns>
|
||||
IList<string> ListFiles(string rootPath);
|
||||
|
||||
//IList<string> ListFiles(string rootPath);
|
||||
|
||||
/// <summary>
|
||||
/// Given a library id, scans folders for said library. Parses files and generates DB updates. Will overwrite
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue