Пример #1
0
 /// <summary>constructor</summary>
 public SectionWithDepartmentController(
     ISectionWithDepartmentProcessor sectionWithDepartmentProcessor,
     ISectionWithDepartmentFileImportProcessor sectionWithDepartmentImportProcessor
     )
 {
     this.sectionWithDepartmentProcessor       = sectionWithDepartmentProcessor;
     this.sectionWithDepartmentImportProcessor = sectionWithDepartmentImportProcessor;
 }
 public SectionWithDepartmentMaster(
     IAuthorizationProcessor authorizationProcessor,
     ISectionWithDepartmentProcessor sectionWithDepartmentProcessor,
     ILogManager logManager
     )
 {
     this.authorizationProcessor         = authorizationProcessor;
     this.sectionWithDepartmentProcessor = sectionWithDepartmentProcessor;
     logger = logManager.GetLogger(typeof(SectionWithDepartmentMaster));
 }
Пример #3
0
 /// <summary>constructor</summary>
 public SectionWithDepartmentFileImportProcessor(
     ICompanyProcessor companyProcessor,
     ILoginUserProcessor loginUserProcessor,
     IApplicationControlProcessor applicationControlProcessor,
     ISectionProcessor sectionProcessor,
     IDepartmentProcessor departmentProcessor,
     ISectionWithDepartmentProcessor sectionWithDepartmentProcessor
     )
 {
     this.companyProcessor               = companyProcessor;
     this.loginUserProcessor             = loginUserProcessor;
     this.applicationControlProcessor    = applicationControlProcessor;
     this.sectionProcessor               = sectionProcessor;
     this.departmentProcessor            = departmentProcessor;
     this.sectionWithDepartmentProcessor = sectionWithDepartmentProcessor;
 }