using System.Collections.Generic; namespace Notepad.Domain.Repositories { public interface IRepository { IEnumerable All(); } }