示例#1
0
 public FlowChartPlanService(
     IFlowChartMasterRepository flowChartMasterRepository,
     IFlowChartDetailRepository flowChartDetailRepository,
     IFlowChartMgDataRepository flowChartMgDataRepository,
     IFlowChartIEMgDataRepository flowChartIEMgDataRepository,
     ISystemBUDRepository systemBUDRepository,
     ISystemProjectRepository systemProjectRepository,
     ISystemFunctionPlantRepository systemFunctionPlantRepository,
     ISystemUserRepository systemUserRepository,
     ISystemUserRoleRepository systemUserRoleRepository,
     IFlowChartPCMHRelationshipRepository flowChartPCMHRelationshipRepository,
     ISystemRoleRepository systemRoleRepository,
     ISystemUserOrgRepository systemUserOrgRepository,
     IProjectUsersGroupRepository projectUsersGroupRepository,
     ISystemOrgRepository systemOrgRepository,
     ISystemOrgBomRepository systemOrgBomRepository,
     IUnitOfWork unitOfWork)
 {
     this.systemRoleRepository                = systemRoleRepository;
     this.unitOfWork                          = unitOfWork;
     this.flowChartMasterRepository           = flowChartMasterRepository;
     this.flowChartDetailRepository           = flowChartDetailRepository;
     this.flowChartMgDataRepository           = flowChartMgDataRepository;
     this.flowChartIEMgDataRepository         = flowChartIEMgDataRepository;
     this.systemProjectRepository             = systemProjectRepository;
     this.systemBUDRepository                 = systemBUDRepository;
     this.systemFunctionPlantRepository       = systemFunctionPlantRepository;
     this.systemUserRepository                = systemUserRepository;
     this.systemUserRoleRepository            = systemUserRoleRepository;
     this.flowChartPCMHRelationshipRepository = flowChartPCMHRelationshipRepository;
     this.systemUserOrgRepository             = systemUserOrgRepository;
     this.projectUsersGroupRepository         = projectUsersGroupRepository;
     this.systemOrgRepository                 = systemOrgRepository;
     this.systemOrgBomRepository              = systemOrgBomRepository;
 }
示例#2
0
 public CommonService(
     ISystemUserRepository systemUserRepository,
     ISystemRoleRepository systemRoleRepository,
     ISystemPlantRepository systemPlantRepository,
     ISystemOrgRepository systemOrgRepository,
     ISystemBUMRepository systemBUMRepository,
     ISystemBUDRepository systemBUDRepository,
     IFlowChartPCMHRelationshipRepository flowChartPCMHRelationshipRepository,
     ISystemOrgBomRepository systemOrgBomRepository,
     IProjectUsersGroupRepository projectUsersGroupRepository,
     ISystemUserOrgRepository systemUserOrgRepository,
     ISystemUserBusinessGroupRepository systemUserBusinessGroupRepository,
     ISystemProjectRepository systemProjectRepository,
     IFlowChartMasterRepository flowChartMasterRepository,
     IFlowChartMgDataRepository flowChartMgDataRepository,
     ISystemLocaleStringResourceRepository systemLocaleStringResourceRepository,
     IUnitOfWork unitOfWork)
 {
     this.systemUserRepository  = systemUserRepository;
     this.systemRoleRepository  = systemRoleRepository;
     this.systemPlantRepository = systemPlantRepository;
     this.systemOrgRepository   = systemOrgRepository;
     this.systemBUMRepository   = systemBUMRepository;
     this.systemBUDRepository   = systemBUDRepository;
     this.flowChartPCMHRelationshipRepository = flowChartPCMHRelationshipRepository;
     this.systemOrgBomRepository               = systemOrgBomRepository;
     this.projectUsersGroupRepository          = projectUsersGroupRepository;
     this.systemUserOrgRepository              = systemUserOrgRepository;
     this.systemUserBusinessGroupRepository    = systemUserBusinessGroupRepository;
     this.systemProjectRepository              = systemProjectRepository;
     this.flowChartMasterRepository            = flowChartMasterRepository;
     this.systemLocaleStringResourceRepository = systemLocaleStringResourceRepository;
     this.flowChartMgDataRepository            = flowChartMgDataRepository;
     this.unitOfWork = unitOfWork;
 }
示例#3
0
 public FlowChartMasterService(
     IFlowChartMasterRepository flowChartMasterRepository,
     IFlowChartDetailRepository flowChartDetailRepository,
     IFlowChartMgDataRepository flowChartMgDataRepository,
     ISystemBUDRepository systemBUDRepository,
     ISystemProjectRepository systemProjectRepository,
     ISystemFunctionPlantRepository systemFunctionPlantRepository,
     ISystemUserRepository systemUserRepository,
     ISystemUserRoleRepository systemUserRoleRepository,
     IFlowChartPCMHRelationshipRepository flowChartPCMHRelationshipRepository,
     ISystemRoleRepository systemRoleRepository,
     ISystemUserOrgRepository systemUserOrgRepository,
     IProjectUsersGroupRepository projectUsersGroupRepository,
     ISystemOrgRepository systemOrgRepository,
     ISystemOrgBomRepository systemOrgBomRepository,
     IQualityAssuranceMgDataRepository qualityAssuranceMgDataRepository,
     IQualityAssuranceInputMasterRepository qualityAssuranceInputMasterRepository,
     IQualityAssurance_OQC_InputMasterRepository oQC_InputMasterRepository,
     IQualityAssuranceInputMasterHistoryRepository qualityAssuranceInputMasterHistoryRepository,
     IOQCInputMasterHistoryRepository oQCInputMasterHistoryRepository,
     IExceptionTypeWithFlowchartRepository exceptionTypeWithFlowchartRepository,
     IUnitOfWork unitOfWork)
 {
     this.systemRoleRepository                         = systemRoleRepository;
     this.unitOfWork                                   = unitOfWork;
     this.flowChartMasterRepository                    = flowChartMasterRepository;
     this.flowChartDetailRepository                    = flowChartDetailRepository;
     this.flowChartMgDataRepository                    = flowChartMgDataRepository;
     this.systemProjectRepository                      = systemProjectRepository;
     this.systemBUDRepository                          = systemBUDRepository;
     this.systemFunctionPlantRepository                = systemFunctionPlantRepository;
     this.systemUserRepository                         = systemUserRepository;
     this.systemUserRoleRepository                     = systemUserRoleRepository;
     this.flowChartPCMHRelationshipRepository          = flowChartPCMHRelationshipRepository;
     this.systemUserOrgRepository                      = systemUserOrgRepository;
     this.projectUsersGroupRepository                  = projectUsersGroupRepository;
     this.systemOrgRepository                          = systemOrgRepository;
     this.systemOrgBomRepository                       = systemOrgBomRepository;
     this.qualityAssuranceMgDataRepository             = qualityAssuranceMgDataRepository;
     this.qualityAssuranceInputMasterRepository        = qualityAssuranceInputMasterRepository;
     this.oQC_InputMasterRepository                    = oQC_InputMasterRepository;
     this.qualityAssuranceInputMasterHistoryRepository = qualityAssuranceInputMasterHistoryRepository;
     this.oQCInputMasterHistoryRepository              = oQCInputMasterHistoryRepository;
     this.exceptionTypeWithFlowchartRepository         = exceptionTypeWithFlowchartRepository;
 }