コード例 #1
0
 public ApplicationGroupController(IErrorService errorService,
                                   IApplicationGroupService appGroupService,
                                   IApplicationRoleService appRoleService,
                                   INewCategoryService newCategoryService,
                                   ApplicationUserManager userManager,
                                   IApplicationCateGroupRepository applicationCateGroup,
                                   IUnitOfWork unitOfWork) : base(errorService)
 {
     this._appGroupService      = appGroupService;
     this._appRoleService       = appRoleService;
     this._newCategoryService   = newCategoryService;
     this._userManager          = userManager;
     this._applicationCateGroup = applicationCateGroup;
     this._unitOfWork           = unitOfWork;
 }
コード例 #2
0
 public NewCategoryService(INewCategoryRepository newCategoryRepository, IApplicationCateGroupRepository appCateGroupRepository, IUnitOfWork unitOfWork)
 {
     this._newCategoryRepository  = newCategoryRepository;
     this._appCateGroupRepository = appCateGroupRepository;
     this._unitOfWork             = unitOfWork;
 }