/// <summary>
 /// Constructor
 /// </summary>
 /// <param name="webApiAuthenticationService"></param>
 public WebApiAuthenticationChecker(IWebApiAuthenticationService webApiAuthenticationService)
 {
     if (webApiAuthenticationService == null)
     {
         throw new ArgumentNullException("webApiAuthenticationService");
     }
     this.webApiAuthenticationService = webApiAuthenticationService;
 }
Beispiel #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 /// <param name="webApiAuthenticationService"></param>
 public WebApiAuthenticationChecker(IWebApiAuthenticationService webApiAuthenticationService)
 {
     if (webApiAuthenticationService == null)
     {
         throw new ArgumentNullException("webApiAuthenticationService");
     }
     this.webApiAuthenticationService = webApiAuthenticationService;
 }
Beispiel #3
0
        //private readonly IWebApiAuthenticationService authenticationService;

        public HomeController(IWebApiAuthenticationService authenticationService)
        {
        }
Beispiel #4
0
        //private readonly IWebApiAuthenticationService authenticationService;

        public HomeController(IWebApiAuthenticationService authenticationService)
        {
            
        }