Exemplo n.º 1
0
 ///<summary>Constructor with current user name</summary>
 public Authentication(string CurrentUser) : base()
 {
     Auth = new AuthenticationClasses.InternalService.Authentication();
     S    = new SessionInfo(CurrentUser, AppName);
 }
Exemplo n.º 2
0
 ///<summary>Constructor with current user name and application name</summary>
 public Authentication(SessionInfo S)
 {
     Auth   = new AuthenticationClasses.InternalService.Authentication();
     this.S = S;
 }
Exemplo n.º 3
0
 ///<summary/>
 public Authentication() : base()
 {
     S    = new SessionInfo("", AppName);
     Auth = new AuthenticationClasses.InternalService.Authentication();
 }