Exemple #1
0
        public static bool ShowLoginDialog(PMSAuthRequest request, PMSSession session, string viewType)
        {
            var vw = LoginViewFactory
                     .CreateLoginView(viewType);

            vw.Request = request;
            vw.Session = session;
            return((bool)(vw.ShowDialog()));
        }
 public override PMSSession GetUserSession(PMSAuthRequest pmsAuthRequest)
 {
     throw new NotImplementedException();
 }
Exemple #3
0
 /// <summary>
 /// Logins the user.
 /// </summary>
 /// <param name="authRequest">The auth request.</param>
 /// <returns></returns>
 public PMSSession LoginUser(PMSAuthRequest authRequest)
 {
     throw new NotImplementedException();
 }
Exemple #4
0
 public PMSSession AuthenticateUserCredentials(PMSAuthRequest request)
 {
     throw new NotImplementedException();
 }
Exemple #5
0
 public void AuthenticateUserCredentialsAsync(PMSAuthRequest request)
 {
     throw new NotImplementedException();
 }
Exemple #6
0
 public void GetUserSessionAsync(PMSAuthRequest pmsAuthRequest)
 {
     throw new NotImplementedException();
 }
 public abstract PMSSession GetUserSession(PMSAuthRequest pmsAuthRequest);