public int ConstructWithDoubleAndPrecision(double value, int precision) { var p = new Progress(value, precision); return p.ToInt(); }
public int ConstructWithInt(int value) { var p = new Progress(value); return p.ToInt(); }
public int ConstructWithDouble(double value) { var p = new Progress(value); return p.ToInt(); }