public static int ExecuteNonQuery(ITransactionCustom Transaction, ICommandCustom Command)
        {
            SqlCommandHelper commandHelper = new SqlCommandHelper();

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

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

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

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