示例#1
0
 public LoginUserReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     ILoginUserQueryProcessor loginUserQueryProcessor
     )
 {
     this.companyQueryProcessor   = companyQueryProcessor;
     this.loginUserQueryProcessor = loginUserQueryProcessor;
 }
示例#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;
 }