Exemplo n.º 1
0
        public bool VerifyExistingAccount(string routNum, string acctNum)
        {
            ApplicationHandler appHand = new ApplicationHandler();

            return(appHand.VerifyExistingAccount(routNum, acctNum));
        }
Exemplo n.º 2
0
        public bool VerifyExistingCheck(string routNum, string acctNum, string checkNum)
        {
            ApplicationHandler appHand = new ApplicationHandler();

            return(appHand.VerifyExistingCheck(routNum, acctNum, checkNum));
        }
Exemplo n.º 3
0
        public bool VerifyExistingBank(string routNum)
        {
            ApplicationHandler appHand = new ApplicationHandler();

            return(appHand.VerifyExistingBank(routNum));
        }
Exemplo n.º 4
0
        public bool VerifyDecimalStringInput(string decString)
        {
            ApplicationHandler appHand = new ApplicationHandler();

            return(appHand.VerifyDecimalStringInput(decString));
        }
Exemplo n.º 5
0
        /*  ---------------------------------------------------------------
         *  FUNCTIONs for sundry verifications
         *  ---------------------------------------------------------------
         *  all stolen from ApplicationHandler
         *  probably not the safest way to go about it,
         *      but this way, there's no code duplication
         */
        public bool VerifyIntegerStringInput(string intString)
        {
            ApplicationHandler appHand = new ApplicationHandler();

            return(appHand.VerifyIntegerStringInput(intString));
        }
Exemplo n.º 6
0
        public bool VerifyExistingClient(string clientName)
        {
            ApplicationHandler appHand = new ApplicationHandler();

            return(appHand.VerifyExistingClient(clientName));
        }
Exemplo n.º 7
0
        public bool VerifyExistingUser(string username)
        {
            ApplicationHandler appHand = new ApplicationHandler();

            return(appHand.VerifyExistingUser(username));
        }