Ejemplo n.º 1
0
        /// <summary>Returns true if table is in the expected state to use with this dll. </summary>
        public bool TableStateValid(ODTablesUsed table)
        {
            bool rVal = false;

            ThrowException();
            return(rVal);
        }
Ejemplo n.º 2
0
		/// <summary>
		/// This is the main point where the tables used will be be built.
		/// </summary>
		private static void BuildStaticTableList()
		{
			string name = "ProcedureLog";
			string [] columns = { "col1" };
			Type[] types1 = { typeof(string) };
			ODTablesUsed table1 = new ODTablesUsed(name, columns, types1);
			//public enum ODTablesPulled { ProcedureLog, Adjustment, ClaimProc, PaySplit }
		}
Ejemplo n.º 3
0
        /// <summary>
        /// This is the main point where the tables used will be be built.
        /// </summary>
        private static void BuildStaticTableList()
        {
            string name = "ProcedureLog";

            string []    columns = { "col1" };
            Type[]       types1  = { typeof(string) };
            ODTablesUsed table1  = new ODTablesUsed(name, columns, types1);
            //public enum ODTablesPulled { ProcedureLog, Adjustment, ClaimProc, PaySplit }
        }
Ejemplo n.º 4
0
		/// <summary>Returns true if table is in the expected state to use with this dll. </summary>
		public bool TableStateValid(ODTablesUsed table)
		{
			bool rVal = false;
			ThrowException();
			return rVal;
		}