public FirstRunProjection
 (
     ISpiderFirstCheckService firstCheckService
 )
 {
     _firstCheckService = firstCheckService;
 }
예제 #2
0
 public SpiderManageController
 (
     ISpiderCheckManagerService checkManagerService,
     ISpiderFirstCheckService firstCheckService
 )
 {
     _checkManagerService = checkManagerService;
     _firstCheckService   = firstCheckService;
 }
        public CustomerChecksService
        (
            ICustomerChecksInfoRepository checksInfoRepository,
            ISpiderDocumentInfoRepository documentInfoRepository,
            ISpiderFirstCheckService firstCheckService

        )
        {
            _checksInfoRepository   = checksInfoRepository;
            _documentInfoRepository = documentInfoRepository;
            _firstCheckService      = firstCheckService;
        }