예제 #1
0
 public HttpCheckExecutor(HttpClient client, INotificationService notificationService, ICheckHistoryRepository checkHistoryRepository, ILogger <HttpCheckExecutor> logger)
 {
     _notificationService    = notificationService;
     _checkHistoryRepository = checkHistoryRepository;
     _logger = logger;
     _client = client;
 }
예제 #2
0
 public CheckHistoryService
 (
     IUnitOfWork unitOfWork,
     ICheckHistoryFactory CheckHistoryFactory,
     ICheckHistoryRepository CheckHistoryRepository,
     ITargetAppService TargetAppService
 )
 {
     _unitOfWork             = unitOfWork;
     _checkHistoryFactory    = CheckHistoryFactory;
     _checkHistoryRepository = CheckHistoryRepository;
     _targetAppService       = TargetAppService;
 }