Esempio n. 1
0
 public VerifyerParameter(string parameterName, int targetValue, int ratchetValue, int warningValue, RatchetingDirections direction)
 {
     _parameterName = parameterName;
     _targetValue   = targetValue;
     _ratchetValue  = ratchetValue;
     _warningValue  = warningValue;
     _direction     = direction;
 }
Esempio n. 2
0
        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);
        }
Esempio n. 3
0
        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;
        }