コード例 #1
0
 public TrainingPeopleController(ISysDepartmentService iDepartmentService, IUnitOfWork unitOfWork, IUserInfo iUserInfo, ITrainingTypeService trainingTypeService, ITrainingRelationService trainingRelationService, ISysDepartmentSysUserService iSysDepartmentSysUserService)
 {
     _unitOfWork                   = unitOfWork;
     _iUserInfo                    = iUserInfo;
     _trainingTypeService          = trainingTypeService;
     _trainingRelationService      = trainingRelationService;
     _iSysDepartmentSysUserService = iSysDepartmentSysUserService;
     _iDepartmentService           = iDepartmentService;
 }
コード例 #2
0
 public TrainingTypeController(ITrainingTypeService trainingTypeService)
 {
     _trainingTypeService = trainingTypeService;
 }
コード例 #3
0
 public TrainingTypeController(ITrainingTypeService trainingTypeService, ISubModuleItemService subModuleItemService, IRoleSubModuleItemService roleSubModuleItemService)
 {
     this.trainingTypeService      = trainingTypeService;
     this.subModuleItemService     = subModuleItemService;
     this.roleSubModuleItemService = roleSubModuleItemService;
 }
コード例 #4
0
 public TrainingTypeController(IUnitOfWork unitOfWork, ITrainingTypeService trainingTypeService)
 {
     _unitOfWork          = unitOfWork;
     _trainingTypeService = trainingTypeService;
 }