コード例 #1
0
 public CameraUpdatetor(
     IImgRep imgRep,
     ICameraCache cameraCache,
     IAppLogger log) : base(log)
 {
     this.imgRep      = imgRep;
     this.cameraCache = cameraCache;
 }
コード例 #2
0
 public CameraUpdatetor(
     IGetCameraImg getCameraImg,
     ICameraCache cameraCache,
     Config config,
     IAppLogger log) : base(log)
 {
     this.getCameraImg = getCameraImg;
     this.config       = config;
     this.cameraCache  = cameraCache;
 }