static bool isValidInteger(int? n) { if( n == null ) return false; if( n == 0 ) return false; return true; }