public TestDecoratorWithAdditionalConstructorParameters( SingleService singleService, ITestType decoratedObject, IEnumerable <MultipleService> stubService2) { SingleService = singleService; MultipleService = stubService2.ToArray(); DecoratedObject = decoratedObject; }
public TestCompoundWithAdditionalConstructorParameters( SingleService singleService, IEnumerable <ITestType> innerObjects, IEnumerable <MultipleService> stubService2) { SingleService = singleService; MultipleService = stubService2.ToArray(); InnerObjects = innerObjects.ToArray(); }
public ParameterizedService(SingleService singleService) { SingleService = singleService; }