Example #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;
 }
Example #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;
 }
 public SystemRoleLogic(ISystemRoleRepository systemRoleRepository,
                        IUnitOfWorkFactory unitOfWorkFactory,
                        ITimeSource timeSource)
 {
     _systemRoleRepository = systemRoleRepository;
     _unitOfWorkFactory    = unitOfWorkFactory;
     _timeSource           = timeSource;
 }
Example #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();
 }
 /// <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 ();
 }
Example #6
0
 public SystemRoleLogic(ISystemRoleRepository roleRepository,
                        ISystemPermissionUserLogic permissionUserLogic,
                        ISystemPermissionLogic permissionLogic)
     : base(roleRepository)
 {
     _permissionUserLogic = permissionUserLogic;
     _permissionLogic     = permissionLogic;
     _roleRepository      = roleRepository;
 }
 public SystemRoleLogic(ISystemRoleRepository roleRepository,
                        ISystemPermissionUserLogic permissionUserLogic,
                        ISystemPermissionLogic permissionLogic,
                        ISystemOrganizationRepository organizationRepository)
     : base(roleRepository)
 {
     _permissionUserLogic    = permissionUserLogic;
     _permissionLogic        = permissionLogic;
     _organizationRepository = organizationRepository;
     _roleRepository         = roleRepository;
 }
Example #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;
 }
Example #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;
 }
Example #10
0
 /// <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;
 }
Example #11
0
 /// <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;
 }
Example #12
0
 public SystemRoleLogic(IRepository <SystemRole, Guid> repository, ISystemRoleRepository systemRoleRepository) : base(repository)
 {
     _systemRoleRepository = systemRoleRepository;
 }
Example #13
0
 public SystemRoleService(ISystemRoleRepository systemRoleRepository)
 {
     _repository = systemRoleRepository;
 }
 public SystemRoleManager(ISystemRoleRepository systemRoleRepository, IMembershipRepository membershipRepository, ISystemSettings systemSettings)
 {
     _systemRoleRepository = DIHelper.VerifyParameter(systemRoleRepository);
     _membershipRepository = DIHelper.VerifyParameter(membershipRepository);
     _systemSettings = DIHelper.VerifyParameter(systemSettings);
 }
Example #15
0
 public SystemRoleLogic(ISystemRoleRepository systemRoleRepository) : base(systemRoleRepository)
 {
     _systemRoleRepository = systemRoleRepository;
 }
Example #16
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="systemRoleRepository"></param>
 public SaveRoleMenuCommandHandler(ISystemRoleRepository systemRoleRepository)
 {
     this._systemRoleRepository = systemRoleRepository;
 }
Example #17
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="systemRoleRepository"></param>
 public CreateRoleCommandHandler(ISystemRoleRepository systemRoleRepository)
 {
     _systemRoleRepository = systemRoleRepository;
 }
Example #18
0
 public BLLRole()
 {
     repSystemRole = new SystemRoleRepository(DatabaseFactory);
     repRoleUser = new SystemRoleUserRepository(DatabaseFactory);
 }