Ejemplo n.º 1
0
        public static int ExecuteNonQuery(ITransactionCustom Transaction, ICommandCustom Command)
        {
            SqlCommandHelper commandHelper = new SqlCommandHelper();

            return(commandHelper.ExecuteNonQuery(Transaction, Command));
        }
Ejemplo n.º 2
0
        public static bool ExecuteNonQuery(ITransactionCustom Transaction, List <ICommandCustom> CommandList)
        {
            SqlCommandHelper commandHelper = new SqlCommandHelper();

            return(commandHelper.ExecuteNonQuery(Transaction, CommandList));
        }
Ejemplo n.º 3
0
        public static int ExecuteNonQuery(string connectionString, ICommandCustom Command)
        {
            SqlCommandHelper commandHelper = new SqlCommandHelper();

            return(commandHelper.ExecuteNonQuery(connectionString, Command));
        }
Ejemplo n.º 4
0
        public static bool ExecuteNonQuery(string connectionString, List <ICommandCustom> CommandList)
        {
            SqlCommandHelper commandHelper = new SqlCommandHelper();

            return(commandHelper.ExecuteNonQuery(connectionString, CommandList));
        }