コード例 #1
0
ファイル: AuthController.cs プロジェクト: hinteadan/croom
 public AuthController(IAuthenticateLikeNothing authenticator)
 {
     Check.NotNull(authenticator, "authenticator");
     this.authenticator = authenticator;
     Check.InjectedMembers(this);
 }
コード例 #2
0
 public AuthController(IAuthenticateLikeNothing authenticator)
 {
     Check.NotNull(authenticator, "authenticator");
     this.authenticator = authenticator;
     Check.InjectedMembers(this);
 }