コード例 #1
0
        public bool AuthenticationUser(string userName, string password)
        {
            var status = new Authentication();
            var statusReturn = status.AuthenticateUser(userName, password);

            return statusReturn;
        }
コード例 #2
0
        public bool AuthenticationUser(string UserName, string Password)
        {
            var status = new Authorization.Authentication();
            var statusReturn = status.AuthenticateUser(UserName, Password);

            return statusReturn;
        }