public DebugData(DataResultTypes dataResultType, Bitmap resultingImage)
        {
            this.DataResultType = dataResultType;
            this.ResultingImage = new Bitmap(resultingImage);

            this.SourceImages = new List<Bitmap>();
        }
 public DebugData(DataResultTypes dataResultType, Bitmap resultingImage, object data)
     : this(dataResultType, resultingImage)
 {
     this.Data = data;
 }
 public EBCMessageData(DataResultTypes dataResultType, Bitmap image, object data)
     : this(dataResultType, image)
 {
     this.Data = data;
 }
 public EBCMessageData(DataResultTypes dataResultType, Bitmap image)
 {
     this.DataResultType = dataResultType;
     this.Image = new Bitmap(image);
     this.ImageType = ImageTypes.Default;
 }