Esempio n. 1
0
        public static DataTable ExecuteDataTable(string connectionString, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(connectionString);

            return(fwCommandHelper.ExecuteDataTable(connectionString, Command));
        }
Esempio n. 2
0
        public static DataTable ExecuteDataTable(ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteDataTable(Command));
        }
Esempio n. 3
0
        public static DataTable ExecuteDataTable(ITransactionCustom Transaction, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(Transaction);

            return(fwCommandHelper.ExecuteDataTable(Transaction, Command));
        }