ITransientDependency.cs 242 B

12345678910
  1. namespace Abp.Dependency
  2. {
  3. /// <summary>
  4. /// All classes implement this interface are automatically registered to dependency injection as transient object.
  5. /// </summary>
  6. public interface ITransientDependency
  7. {
  8. }
  9. }