public VerifyerParameter(string parameterName, int targetValue, int ratchetValue, int warningValue, RatchetingDirections direction) { _parameterName = parameterName; _targetValue = targetValue; _ratchetValue = ratchetValue; _warningValue = warningValue; _direction = direction; }
private List <VerifyerParameter> CreateVerifyParameterList(string specialParameter, int targetValue, int ratchet, int warning, RatchetingDirections direction) { var list = CreateVerifyParameterList(); var specPar = new VerifyerParameter(specialParameter, targetValue, ratchet, warning, direction); list.Add(specPar); return(list); }
private List<VerifyerParameter> CreateVerifyParameterList(string specialParameter, int targetValue, int ratchet, int warning, RatchetingDirections direction) { var list = CreateVerifyParameterList(); var specPar = new VerifyerParameter(specialParameter, targetValue, ratchet, warning, direction); list.Add(specPar); return list; }