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

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

            return(commandHelper.ExecuteScalar(connectionString, Command));
        }