Exemplo n.º 1
0
 /// <summary>
 /// constructor
 /// </summary>
 public SectionWithLoginUserController(
     ISectionWithLoginUserProcessor sectionWithLoginUserProcessor,
     ISectionWithLoginUserFileImportProcessor sectionWithLoginUserImportProcessor
     )
 {
     this.sectionWithLoginUserProcessor       = sectionWithLoginUserProcessor;
     this.sectionWithLoginUserImportProcessor = sectionWithLoginUserImportProcessor;
 }
Exemplo n.º 2
0
 public SectionWithLoginUserMaster(
     IAuthorizationProcessor authorizationProcessor,
     ISectionWithLoginUserProcessor sectionWithLoginUserProcessor,
     ILogManager logManager
     )
 {
     this.authorizationProcessor        = authorizationProcessor;
     this.sectionWithLoginUserProcessor = sectionWithLoginUserProcessor;
     logger = logManager.GetLogger(typeof(SectionWithLoginUserMaster));
 }
 /// <summary>constructor</summary>
 public SectionWithLoginUserFileImportProcessor(
     ICompanyProcessor companyProcessor,
     ILoginUserProcessor loginUserProcessor,
     IApplicationControlProcessor applicationControlProcessor,
     ISectionProcessor sectionProcessor,
     ISectionWithLoginUserProcessor sectionWithLoginUserProcessor
     )
 {
     this.companyProcessor              = companyProcessor;
     this.loginUserProcessor            = loginUserProcessor;
     this.applicationControlProcessor   = applicationControlProcessor;
     this.sectionProcessor              = sectionProcessor;
     this.sectionWithLoginUserProcessor = sectionWithLoginUserProcessor;
 }