Beispiel #1
0
        public static int ExecuteScalar(string connectionString, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(connectionString);

            return(fwCommandHelper.ExecuteScalar(connectionString, Command));
        }
Beispiel #2
0
        public static int ExecuteScalar(ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper();

            return(fwCommandHelper.ExecuteScalar(Command));
        }
Beispiel #3
0
        public static int ExecuteScalar(ITransactionCustom Transaction, ICommandCustom Command)
        {
            CommandCustomHelper fwCommandHelper = new CommandCustomHelper(Transaction);

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