FSExplorerServices.cs
Home
/
FileServer /
BLL /
Services /
FSExplorerServices.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Model.Entities.Files.FS_Entities;
using Model.UnitsOfWork;
namespace BLL.Services
{
public class FSExplorerServices : Base.BaseServices
{
public FSExplorerServices(UOW UOW) : base(UOW) { }
//public SDirectory GetDirectory(int ID, bool IncludeItems = false, bool IncludeParent = false)
//{
// if (ID == -1)
// {
// //UOW.Repo_rootDirectory
// }
// else
// {
// }
//}
}
}