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