using Abp.Dependency; namespace Abp.Domain.Repositories { /// /// This interface must be implemented by all repositories to identify them by convention. /// Implement generic version instead of this one. /// public interface IRepository : ITransientDependency { } }