public ProfileController(IPersonManagementService personManagementService,
                          IRoleManagementService roleManagementService, IStructureManageService structureManageService)
 {
     _personManagementService = personManagementService;
     _roleManagementService   = roleManagementService;
     _structureManageService  = structureManageService;
 }
 public AssignmentPostUserController(IPersonManagementService personManagementService, IRoleManagementService roleManagementService,
                                     IStructureManageService structureManageService)
 {
     _personManagementService = personManagementService;
     _roleManagementService   = roleManagementService;
     _structureManageService  = structureManageService;
 }
Ejemplo n.º 3
0
 public CommissionController(IUnitOfWork unitOfWork, ICommissionService comissionService,
                             IBaseInfoComissionCouncilService baseInfoComissionCouncilService,
                             IStructureManageService structureManageService, ICartableService cartableService,
                             IAttachmentService attachmentService, IPersonManagementService personManagementService)
 {
     _comissionService = comissionService;
     _baseInfoComissionCouncilService = baseInfoComissionCouncilService;
     _structureManageService          = structureManageService;
     _cartableService         = cartableService;
     _attachmentService       = attachmentService;
     _personManagementService = personManagementService;
     _unitOfWork = unitOfWork;
 }
 public CouncilController(ICouncilService councilService,
                          IStructureManageService structureManageService, ICartableService cartableService,
                          IBaseInfoComissionCouncilService baseInfoComissionCouncilService, IPersonManagementService personManagementService,
                          IAttachmentService attachmentService, ITextDefaultService textDefaultService)
 {
     _councilService                  = councilService;
     _structureManageService          = structureManageService;
     _cartableService                 = cartableService;
     _baseInfoComissionCouncilService = baseInfoComissionCouncilService;
     _personManagementService         = personManagementService;
     _attachmentService               = attachmentService;
     _textDefaultService              = textDefaultService;
 }
 public ProfileController(IPersonManagementService personManagementService, IStructureManageService iStructureManageService)
 {
     _personManagementService = personManagementService;
     _structureManageService  = iStructureManageService;
 }
 public StructureController(IStructureManageService structureManageService)
 {
     _structureManageService = structureManageService;
 }