Exemple #1
0
 /// <summary>
 /// Default implementasyon olan PxAuthentication ve PxAuthorization sınıflarını kullanır.
 /// </summary>
 public PxAuthHelper()
 {
     this._authentication = new PxAuthentication();
     this._authorization  = new PxAuthorization();
 }
Exemple #2
0
 public PxAuthHelper(IPxAuthentication authentication, IPxAuthorization authorization)
 {
     this._authentication = authentication;
     this._authorization  = authorization;
 }