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