IInjection.cs 322 B

12345678910111213
  1. using System.Collections.Generic;
  2. namespace com.bbbirder.injection
  3. {
  4. public interface IInjection : IDirectRetrieve
  5. {
  6. /// <summary>
  7. /// set this property to populate injections
  8. /// </summary>
  9. /// <value></value>
  10. public IEnumerable<InjectionInfo> ProvideInjections();
  11. }
  12. }