示例#1
0
 public MediaService(
     IMediaStore mediaStore,
     IMediaBlobStore mediaBlobStore,
     IAgeOperationsService ageOperationsService,
     IThumbnailBlobStore thumbnailBlobStore,
     IBus bus)
 {
     _mediaStore           = mediaStore;
     _mediaBlobStore       = mediaBlobStore;
     _ageOperationsService = ageOperationsService;
     _thumbnailBlobStore   = thumbnailBlobStore;
     _bus = bus;
 }
示例#2
0
 public FaceService(
     IFaceStore faceStore,
     IPersonService personStore,
     IMediaStore mediaStore,
     IFaceDetectionService faceDetectionService,
     IAgeOperationsService ageOperationsService,
     IBus bus)
 {
     _faceStore            = faceStore;
     _personService        = personStore;
     _mediaStore           = mediaStore;
     _faceDetectionService = faceDetectionService;
     _ageOperationsService = ageOperationsService;
     _bus = bus;
 }
 public PersonUpdatedConsumer(IAgeOperationsService ageOperationsService)
 {
     _ageOperationsService = ageOperationsService;
 }