public SectionWithLoginUserReportProcessor(
     ICompanyQueryProcessor companyQueryProcessor,
     ISectionWithLoginUserQueryProcessor sectionWithLoginUserQueryProcessor
     )
 {
     this.companyQueryProcessor = companyQueryProcessor;
     this.sectionWithLoginUserQueryProcessor = sectionWithLoginUserQueryProcessor;
 }
Exemplo n.º 2
0
 public SectionWithLoginUserProcessor(
     ISectionWithLoginUserQueryProcessor sectionWithLoginUserQueryProcessor,
     IAddSectionWithLoginUserQueryProcessor addSectionWithUserQueryProcessor,
     IDeleteSectionWithLoginUserQueryProcessor deleteSectionWithLoginUserQueryProcessor,
     ITransactionScopeBuilder transactionScopeBuilder
     )
 {
     this.sectionWithLoginUserQueryProcessor       = sectionWithLoginUserQueryProcessor;
     this.addSectionWithUserQueryProcessor         = addSectionWithUserQueryProcessor;
     this.deleteSectionWithLoginUserQueryProcessor = deleteSectionWithLoginUserQueryProcessor;
     this.transactionScopeBuilder = transactionScopeBuilder;
 }