using System;
using System.Collections;
using System.Collections.Generic;
using System.Reflection;
namespace com.bbbirder.injection
{
public abstract class InjectionAttribute : DirectRetrieveAttribute
{
///
/// set this property to populate injections
///
///
public abstract IEnumerable ProvideInjections();
}
}