コード例 #1
0
        public ImageController(
            IImageRepository imageRepository,
            IDetectedObjectRepository detectedObjectRepository,
            IOperationsRepository operationRepository,

            IMapper mapper
            )
        {
            _imageRepository          = imageRepository;
            _operationRepository      = operationRepository;
            _detectedObjectRepository = detectedObjectRepository;
        }
コード例 #2
0
 public DetectedObjectController(
     IDetectedObjectRepository detectedObjectRepository,
     IOperationsRepository operationRepository,
     IMissionRepository missionRepository,
     IUserRepository userRepository,
     IHubContext <NotificationHub> notificationHub,
     IClusteringService clusteringService,
     IMapper mapper
     )
 {
     _detectedObjectRepository = detectedObjectRepository;
     _operationRepository      = operationRepository;
     _missionRepository        = missionRepository;
     _userRepository           = userRepository;
     _clusteringService        = clusteringService;
     _notificationHub          = notificationHub;
     _mapper = mapper;
 }