public LoginUserLicenseMaster(IAuthorizationProcessor authorizationProcessor,
                               ILoginUserLicenseProcessor loginUserLicenseProcessor,
                               ILogManager logManager)
 {
     this.authorizationProcessor    = authorizationProcessor;
     this.loginUserLicenseProcessor = loginUserLicenseProcessor;
     logger = logManager.GetLogger(typeof(LoginUserLicense));
 }
Example #2
0
 public LoginUserProcessor(
     ILoginUserQueryProcessor loginUserQueryProcessor,
     IAddLoginUserQueryProcessor addLoginUserQueryProcessor,
     IDeleteIdenticalEntityQueryProcessor <LoginUser> deleteIdenticalQueryProcessor,
     IByCompanyGetEntityQueryProcessor <ApplicationControl> applicationControlByCompanyId,
     ILoginUserPasswordProcessor loginUserPasswordProcessor,
     ILoginUserLicenseProcessor loginUserLicenseProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.loginUserQueryProcessor       = loginUserQueryProcessor;
     this.addLoginUserQueryProcessor    = addLoginUserQueryProcessor;
     this.deleteIdenticalQueryProcessor = deleteIdenticalQueryProcessor;
     this.applicationControlByCompanyId = applicationControlByCompanyId;
     this.loginUserPasswordProcessor    = loginUserPasswordProcessor;
     this.loginUserLicenseProcessor     = loginUserLicenseProcessor;
     this.transactionScopeBuilder       = transactionScopeBuilder;
 }
Example #3
0
 /// <summary>
 /// constructor
 /// </summary>
 public LoginUserLicenseController(
     ILoginUserLicenseProcessor loginUserLicenseProcessor
     )
 {
     this.loginUserLicenseProcessor = loginUserLicenseProcessor;
 }