IRepository.cs 324 B

12345678910111213
  1. using Abp.Dependency;
  2. namespace Abp.Domain.Repositories
  3. {
  4. /// <summary>
  5. /// This interface must be implemented by all repositories to identify them by convention.
  6. /// Implement generic version instead of this one.
  7. /// </summary>
  8. public interface IRepository : ITransientDependency
  9. {
  10. }
  11. }