using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Text; namespace Taloyhtio.GeneralApi.IntegrationUtility.Repositories { public interface IFileRepository { List GetAllNew(string folderPath); string GetContent(string fileName); bool Move(string oldPath, string newPath); } }