public TargetCallDependencyDefinition(RequiredTargetCallTypeDefinition requiredType, MixinDefinition dependingMixin, TargetCallDependencyDefinition aggregator)
     : base(requiredType, aggregator)
 {
     ArgumentUtility.CheckNotNull("dependingMixin", dependingMixin);
     _dependingMixin = dependingMixin;
 }
Ejemplo n.º 2
0
 public ComposedInterfaceDependencyDefinition(RequiredTargetCallTypeDefinition requirement, Type composedInterface, DependencyDefinitionBase aggregator)
     : base(requirement, aggregator)
 {
     ArgumentUtility.CheckNotNull("composedInterface", composedInterface);
     _composedInterface = composedInterface;
 }