Example #1
0
 public ImageFullInfo(image imgEntity, double position)
     : this(imgEntity)
 {
     this.Position = position;
 }
Example #2
0
 public ImageFullInfo(image imgEntity)
 {
     Contract.Requires(imgEntity != null);
     this.imgEntity = imgEntity;
     ComputeFilePath();
 }