Beispiel #1
0
        public static DataSet ExecuteDataSet(string connectionString, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(connectionString);

            return(fwCommandHelper.ExecuteDataSet(connectionString, Command));
        }
Beispiel #2
0
        public static DataSet ExecuteDataSet(ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteDataSet(Command));
        }
Beispiel #3
0
        public static DataSet ExecuteDataSet(ITransactionCustom Transaction, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(Transaction);

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