Esempio n. 1
0
        ///<summary>Returns lt, gt, or equals</summary>
        private static string GetOperandText(EhrOperand ehrOp)
        {
            string operand = "";

            switch (ehrOp)
            {
            case EhrOperand.Equals:
                operand = "=";
                break;

            case EhrOperand.GreaterThan:
                operand = ">";
                break;

            case EhrOperand.LessThan:
                operand = "<";
                break;
            }
            return(operand);
        }
Esempio n. 2
0
		///<summary>Returns lt, gt, or equals</summary>
		private static string GetOperandText(EhrOperand ehrOp){
			string operand="";
			switch(ehrOp) {
				case EhrOperand.Equals:
					operand="=";
					break;
				case EhrOperand.GreaterThan:
					operand=">";
					break;
				case EhrOperand.LessThan:
					operand="<";
					break;
			}
			return operand;
		}