コード例 #1
0
 public UserController(IUserPermissionManagement userPermissionManagement, IDepartmentManagement departmentManagement, IUserDepartmentManagement userdepartmentManagement, IRequisitionManagement requisitionManagement, IUserAllocationManagement userAllocationManagement)
 {
     this.userPermissionManagement = userPermissionManagement;
     this.departmentManagement     = departmentManagement;
     this.userdepartmentManagement = userdepartmentManagement;
     this.requisitionManagement    = requisitionManagement;
     this.userAllocationManagement = userAllocationManagement;
 }
コード例 #2
0
        public UserAllocationController(IRequisitionManagement requisitionManagement, IUserAllocationManagement userAllocationManagement, IRequisitionApprovalManagement requisitionApprovalManagement, IUserManagement userManagement, IUserDepartmentManagement userdepartmentManagement, IDepartmentManagement departmentManagement)
        {
            this.requisitionManagement         = requisitionManagement;
            this.userAllocationManagement      = userAllocationManagement;
            this.requisitionApprovalManagement = requisitionApprovalManagement;
            this.userManagement = userManagement;

            this.userdepartmentManagement = userdepartmentManagement;
            this.departmentManagement     = departmentManagement;
        }