Esempio n. 1
0
        public bool LoginCustomer(string emailToLookUp, string passwordToVerify)
        {
            bool wasIdentified;

            CustomerAccess customberDb = new CustomerAccess();

            wasIdentified = customberDb.LoginCustomer(emailToLookUp, passwordToVerify);

            return(wasIdentified);
        }