public CameraByIdDataLoader(
     IBatchScheduler batchScheduler,
     ICameraStore cameraStore)
     : base(batchScheduler)
 {
     _cameraStore = cameraStore;
 }
Beispiel #2
0
 protected virtual void Awake()
 {
     ViewStore     = FindObjectOfType <ViewStore>();
     CameraStore   = FindObjectOfType <CameraStore>();
     BoardStore    = FindObjectOfType <BoardStore>();
     MouseStore    = FindObjectOfType <MouseStore>();
     KeyboardStore = FindObjectOfType <KeyboardStore>();
 }
Beispiel #3
0
 public MongoMediaStore(
     MediaStoreContext mediaStoreContext,
     IThumbnailBlobStore thumbnailBlobStore,
     IMediaBlobStore blobStore,
     IFaceStore faceStore,
     IAlbumStore albumStore,
     ICameraStore cameraStore,
     IPersonStore personStore)
 {
     _mediaStoreContext = mediaStoreContext;
     Thumbnails         = thumbnailBlobStore;
     Blob    = blobStore;
     Faces   = faceStore;
     Albums  = albumStore;
     Cameras = cameraStore;
     Persons = personStore;
 }
Beispiel #4
0
 public CameraService(ICameraStore cameraStore)
 {
     _cameraStore = cameraStore;
 }