Exemple #1
0
        public bool validate(string username, string password)
        {
            try
            {
                return(_user.ValidateUsers(username, password));
            }

            catch (Exception ex)
            {
                Log.Error(ex.ToString());
                throw;
            }
        }