namespace CustomTasks.Endpoint { /// /// Abstraction layer to a file system. /// public interface IFileSystem { string ReadAllText(string path); void WriteAllText(string path, string contents); void Copy(string sourceFileName, string destFileName, bool overwrite); } }