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; }
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; }
//private readonly IPartMasterService iPartMasterService; //private readonly ILocationMasterService iLocationMasterService; //private readonly ITestMasterMappingService itestMasterMappingService; //private readonly ICacheService cache; //public TestMasterApiController(IUnitOfWork iunit, ITestMasterService iTestMasterService, // IPartMasterService iPartMasterService, ILocationMasterService iLocationMasterService, ITestMasterMappingService itestMasterMappingService) //{ // this.itestMasterMappingService = itestMasterMappingService; // this.iLocationMasterService = iLocationMasterService; // this.iPartMasterService = iPartMasterService; // this.iTestMasterService = iTestMasterService; //} public TestMasterApiController(ITestMasterService iTestMasterService) { this.iTestMasterService = iTestMasterService; }
public TestMasterController(ITestMasterService testMasterService, IUnitOfWork iunit) { this._testMasterService = testMasterService; this._iUnitOfWork = iunit; }
public TestsController(IUnitOfWork iunit, ITestService testService, ITestMasterService testMasterService) { this.testService = testService; this.iUnitOfWork = iunit; this.testMasterService = testMasterService; }
public GetAllTests(ITestService testsService, IUnitOfWork iunit, ITestMasterService testMasterService) { this.testService = testsService; this.testMasterService = testMasterService; this.iUnitOfWork = iunit; }