public TypeWithSupersetConstructors(
     IFakeMultipleService multipleService,
     IFactoryService factoryService,
     IFakeService fakeService,
     IFakeScopedService scopedService)
 {
 }
 public TypeWithSupersetConstructors(
    IFakeMultipleService multipleService, 
    IFactoryService factoryService,
    IFakeService fakeService,
    IFakeScopedService scopedService)
 {
 }
 public TypeWithSupersetConstructors(
     IFakeService fakeService,
     IFakeMultipleService multipleService,
     IFactoryService factoryService)
     : this(
         multipleService,
         factoryService,
         fakeService,
         scopedService : null)
 {
 }
 public TypeWithSupersetConstructors(
    IFakeService fakeService,
    IFakeMultipleService multipleService,
    IFactoryService factoryService)
     : this(
         multipleService,
         factoryService,
         fakeService,
         scopedService: null)
 {
 }
Exemple #5
0
 public TypeWithDefaultConstructorParameters(
     IFakeMultipleService multipleService,
     IFakeService fakeService = null)
 {
 }
 public TypeWithDefaultConstructorParameters(
     IFakeMultipleService multipleService,
     IFakeService fakeService = null)
 {
 }
 public TypeWithGenericServices(
     IFakeMultipleService multipleService,
     IFakeService fakeService)
 {
 }
 public TypeWithGenericServices(
    IFakeMultipleService multipleService,
    IFakeService fakeService)
 {
 }
Exemple #9
0
 public TypeWithNonOverlappedConstructors(
     IFakeScopedService scopedService,
     IFakeService fakeService,
     IFakeMultipleService multipleService)
 {
 }