1 2 3 4 5 6 7
using System.Collections.Generic; namespace Notepad.Domain.Repositories { public interface IRepository<T> { IEnumerable<T> All(); } }