コード例 #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
ファイル: CommonService.cs プロジェクト: HJ520134/PIS
 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 SystemRoleLogic(ISystemRoleRepository systemRoleRepository,
                        IUnitOfWorkFactory unitOfWorkFactory,
                        ITimeSource timeSource)
 {
     _systemRoleRepository = systemRoleRepository;
     _unitOfWorkFactory    = unitOfWorkFactory;
     _timeSource           = timeSource;
 }
コード例 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PermissionClaimsManager"/> class.
 /// </summary>
 /// <param name="federatedAuthenticationProvider">The federated authentication provider.</param>
 /// <param name="systemRoleRepository">The system role repository.</param>
 /// <param name="systemPermissionService">The system permission service.</param>
 public PermissionClaimsManager(
     IFederatedAuthenticationProvider federatedAuthenticationProvider,
     ISystemRoleRepository systemRoleRepository,
     ISystemPermissionService systemPermissionService)
 {
     _systemRoleRepository           = systemRoleRepository;
     _systemPermissionService        = systemPermissionService;
     _federationAuthenticationModule = federatedAuthenticationProvider.GetFederationAuthenticationModule();
 }
コード例 #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PermissionClaimsManager"/> class.
 /// </summary>
 /// <param name="federatedAuthenticationProvider">The federated authentication provider.</param>
 /// <param name="systemRoleRepository">The system role repository.</param>
 /// <param name="systemPermissionService">The system permission service.</param>
 public PermissionClaimsManager(
     IFederatedAuthenticationProvider federatedAuthenticationProvider,
     ISystemRoleRepository systemRoleRepository,
     ISystemPermissionService systemPermissionService )
 {
     _systemRoleRepository = systemRoleRepository;
     _systemPermissionService = systemPermissionService;
     _federationAuthenticationModule = federatedAuthenticationProvider.GetFederationAuthenticationModule ();
 }
コード例 #6
0
 public SystemRoleLogic(ISystemRoleRepository roleRepository,
                        ISystemPermissionUserLogic permissionUserLogic,
                        ISystemPermissionLogic permissionLogic)
     : base(roleRepository)
 {
     _permissionUserLogic = permissionUserLogic;
     _permissionLogic     = permissionLogic;
     _roleRepository      = roleRepository;
 }
コード例 #7
0
 public SystemRoleLogic(ISystemRoleRepository roleRepository,
                        ISystemPermissionUserLogic permissionUserLogic,
                        ISystemPermissionLogic permissionLogic,
                        ISystemOrganizationRepository organizationRepository)
     : base(roleRepository)
 {
     _permissionUserLogic    = permissionUserLogic;
     _permissionLogic        = permissionLogic;
     _organizationRepository = organizationRepository;
     _roleRepository         = roleRepository;
 }
コード例 #8
0
 public SystemRoleService(ISystemRoleRepository systemRoleRepository,
                          ISystemStaffRoleRepository systemStaffRoleRepository,
                          ISystemRoleRulesRepository systemRoleRulesRepository,
                          ISystemMenuRepository systemMenuRepository,
                          ISystemActionButtonRepository systemActionButtonRepository)
 {
     this._systemRoleRepository         = systemRoleRepository;
     this._systemStaffRoleRepository    = systemStaffRoleRepository;
     this._systemRoleRulesRepository    = systemRoleRulesRepository;
     this._systemMenuRepository         = systemMenuRepository;
     this._systemActionButtonRepository = systemActionButtonRepository;
 }
コード例 #9
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;
 }
コード例 #10
0
ファイル: SystemRoleFactory.cs プロジェクト: divyang4481/REM
 /// <summary>
 /// Initializes a new instance of the <see cref="SystemRoleFactory"/> class.
 /// </summary>
 /// <param name="systemRoleRepository">The program enrollment repository.</param>
 public SystemRoleFactory(ISystemRoleRepository systemRoleRepository)
 {
     _systemRoleRepository = systemRoleRepository;
 }
コード例 #11
0
ファイル: SystemRoleFactory.cs プロジェクト: girish66/REM
 /// <summary>
 /// Initializes a new instance of the <see cref="SystemRoleFactory"/> class.
 /// </summary>
 /// <param name="systemRoleRepository">The program enrollment repository.</param>
 public SystemRoleFactory(ISystemRoleRepository systemRoleRepository)
 {
     _systemRoleRepository = systemRoleRepository;
 }
コード例 #12
0
 public SystemRoleLogic(IRepository <SystemRole, Guid> repository, ISystemRoleRepository systemRoleRepository) : base(repository)
 {
     _systemRoleRepository = systemRoleRepository;
 }
コード例 #13
0
 public SystemRoleService(ISystemRoleRepository systemRoleRepository)
 {
     _repository = systemRoleRepository;
 }
コード例 #14
0
 public SystemRoleManager(ISystemRoleRepository systemRoleRepository, IMembershipRepository membershipRepository, ISystemSettings systemSettings)
 {
     _systemRoleRepository = DIHelper.VerifyParameter(systemRoleRepository);
     _membershipRepository = DIHelper.VerifyParameter(membershipRepository);
     _systemSettings = DIHelper.VerifyParameter(systemSettings);
 }
コード例 #15
0
 public SystemRoleLogic(ISystemRoleRepository systemRoleRepository) : base(systemRoleRepository)
 {
     _systemRoleRepository = systemRoleRepository;
 }
コード例 #16
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="systemRoleRepository"></param>
 public SaveRoleMenuCommandHandler(ISystemRoleRepository systemRoleRepository)
 {
     this._systemRoleRepository = systemRoleRepository;
 }
コード例 #17
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="systemRoleRepository"></param>
 public CreateRoleCommandHandler(ISystemRoleRepository systemRoleRepository)
 {
     _systemRoleRepository = systemRoleRepository;
 }
コード例 #18
0
ファイル: BLLRole.cs プロジェクト: kamiken/KSG-Mobile
 public BLLRole()
 {
     repSystemRole = new SystemRoleRepository(DatabaseFactory);
     repRoleUser = new SystemRoleUserRepository(DatabaseFactory);
 }