public static DataTable ExecuteDataTable(string connectionString, ICommandCustom Command) { CommandCustomHelper fwCommandHelper = new CommandCustomHelper(connectionString); return(fwCommandHelper.ExecuteDataTable(connectionString, Command)); }
public static DataTable ExecuteDataTable(ICommandCustom Command) { CommandCustomHelper fwCommandHelper = new CommandCustomHelper(); return(fwCommandHelper.ExecuteDataTable(Command)); }
public static DataTable ExecuteDataTable(ITransactionCustom Transaction, ICommandCustom Command) { CommandCustomHelper fwCommandHelper = new CommandCustomHelper(Transaction); return(fwCommandHelper.ExecuteDataTable(Transaction, Command)); }