예제 #1
0
        public static bool ExecuteNonQuery(List <ICommandCustom> CommandList)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteNonQuery(CommandList));
        }
예제 #2
0
        public static bool ExecuteNonQuery(string connectionString, List <ICommandCustom> CommandList)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteNonQuery(connectionString, CommandList));
        }
예제 #3
0
        public static bool ExecuteNonQuery(ITransactionCustom Transaction, List <ICommandCustom> CommandList)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteNonQuery(Transaction, CommandList));
        }
예제 #4
0
        public static int ExecuteNonQuery(ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteNonQuery(Command));
        }
예제 #5
0
        public static int ExecuteNonQuery(string connectionString, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(connectionString);

            return(fwCommandHelper.ExecuteNonQuery(connectionString, Command));
        }
예제 #6
0
        public static int ExecuteNonQuery(ITransactionCustom Transaction, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(Transaction);

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