Ejemplo n.º 1
0
 public TestMasterApiController(IUnitOfWork iunit, ITestMasterService iTestMasterService,
                                IPartMasterService iPartMasterService, ILocationMasterService iLocationMasterService, ITestMasterMappingService itestMasterMappingService, ICacheService cache)
 {
     this.itestMasterMappingService = itestMasterMappingService;
     this.iLocationMasterService    = iLocationMasterService;
     this.iPartMasterService        = iPartMasterService;
     this.iTestMasterService        = iTestMasterService;
     this.cache = cache;
 }
Ejemplo n.º 2
0
 public TestMasterController(ITestMasterService testMasterService, IUnitOfWork iunit, ITestService testService,
                             IPartMasterService partMasterService, ILocationMasterService locationMasterService,
                             ITestMasterMappingService testMasterMappingService)
 {
     this.locationMasterService    = locationMasterService;
     this.partMasterService        = partMasterService;
     this.testMasterService        = testMasterService;
     this.iUnitOfWork              = iunit;
     this.testService              = testService;
     this.testMasterMappingService = testMasterMappingService;
 }