using Abp.Dependency;
namespace Abp.Application.Features
{
///
/// Used in the method.
///
public interface IFeatureDependencyContext
{
///
/// Tenant id which requires the feature.
/// Null for current tenant.
///
int? TenantId { get; }
///
/// Gets the .
///
///
/// The ioc resolver.
///
IIocResolver IocResolver { get; }
///
/// Gets the .
///
///
/// The feature checker.
///
IFeatureChecker FeatureChecker { get; }
}
}