public StringParameterViewModel(Parameter <string> p, Cell <string> cell)
 {
     this.p    = p;
     this.cell = cell;
     Reset     = new ResetCommand(this);
 }
 public RangedDoubleParameterViewModel(RangedDoubleParameter RangedDoubleParameter, Cell<double> cell)
 {
     this.RangedDoubleParameter = RangedDoubleParameter;
     this.cell = cell;
     Reset = new ResetCommand(this);
 }