Ejemplo n.º 1
0
        public bool IsUserAuthentication(string login, string password)
        {
            bool result = false;

            try
            {
                result = mapper.IsUserAuthentication(login, password);
            }
            catch (Exception e)
            {
                result = false;
            }
            return(result);
        }