real getPrice( real _costValue, real _qty) { real ret; ; if (_qty !=0) ret = _costValue / _qty; return ret; }