public MockObjectWithAllSupportedDependencies(
     IMockInterface2 interface2Dependency,
     Guid guidDependency)
 {
     this.InterfaceDependency2 = interface2Dependency;
     this.GuidDependency       = guidDependency;
 }
 public MockObjectWithAllSupportedDependencies(
     IMockInterface2 interface2Dependency,
     Guid guidDependency,
     string stringDependency)
     : this(interface2Dependency, guidDependency)
 {
     this.StringDependency = stringDependency;
 }
示例#3
0
 public MockObjectWithDbContextDependencies(
     IMockInterface2 interface2Dependency,
     MockDbContextNoOptions dbContextNoOptionsDependency,
     MockDbContextWithOptions dbContextWithOptionsDependency,
     MockDbContextWithTypedOptions dbContextWithTypedOptions,
     Guid guidDependency,
     string stringDependency)
     : this(interface2Dependency, dbContextNoOptionsDependency, dbContextWithOptionsDependency, dbContextWithTypedOptions, guidDependency)
 {
     this.StringDependency = stringDependency;
 }
示例#4
0
 public MockObjectWithDbContextDependencies(
     IMockInterface2 interface2Dependency,
     MockDbContextNoOptions dbContextNoOptionsDependency,
     MockDbContextWithOptions dbContextWithOptions,
     MockDbContextWithTypedOptions dbContextWithTypedOptions,
     Guid guidDependency)
 {
     this.InterfaceDependency2           = interface2Dependency;
     this.DbContextNoOptionsDependency   = dbContextNoOptionsDependency;
     this.DbContextWithOptionsDependency = dbContextWithOptions;
     this.DbContextWithTypedOptions      = dbContextWithTypedOptions;
     this.GuidDependency = guidDependency;
 }
 public MockObjectWithDifferentDependencies(IMockInterface2 interface2, string stringDependency)
 {
     this.InterfaceDependency2 = interface2;
     this.StringDependency     = stringDependency;
 }
 public MockObjectWithSingleConstructor(IMockInterface1 interface1, IMockInterface2 interface2, string stringDependency)
 {
     this.InterfaceDependency1 = interface1;
     this.InterfaceDependency2 = interface2;
     this.StringDependency     = stringDependency;
 }
示例#7
0
 public MockObject(IMockInterface1 interface1, IMockInterface2 interface2, string stringDependency)
     : this(interface1, interface2)
 {
     this.StringDependency = stringDependency;
 }
示例#8
0
 public MockObject(IMockInterface1 interface1, IMockInterface2 interface2)
     : this(interface1)
 {
     this.InterfaceDependency2 = interface2;
 }