Exemple #1
0
 /// <summary>
 /// constructor
 /// </summary>
 public LoginController(
     ICompanyProcessor companyProcessor,
     ILoginUserProcessor loginUserProcessor,
     ILoginUserPasswordProcessor loginUserPasswordProcessor,
     IAuthenticationWebApiProcessor authenticationWebApiProcessor
     )
 {
     this.companyProcessor              = companyProcessor;
     this.loginUserProcessor            = loginUserProcessor;
     this.loginUserPasswordProcessor    = loginUserPasswordProcessor;
     this.authenticationWebApiProcessor = authenticationWebApiProcessor;
 }
Exemple #2
0
 /// <summary>
 /// </summary>
 public AuthenticationFilter(IAuthenticationWebApiProcessor authenticationProcessor)
 {
     this.authenticationProcessor = authenticationProcessor;
 }