Exemplo n.º 1
0
 public InspectionService(NesteoDbContext dbContext, IMapper mapper, ILateDependency <INestingBoxService> nestingBoxServiceDependency) : base(dbContext,
                                                                                                                                              mapper)
 {
     _nestingBoxServiceDependency = nestingBoxServiceDependency ?? throw new ArgumentNullException(nameof(nestingBoxServiceDependency));
 }
 public TestClass(ILateDependency <ITestDependency> testDependency)
 {
     _testDependency = testDependency ?? throw new ArgumentNullException(nameof(testDependency));
 }