예제 #1
0
 public ArticleController(IArticleService artService, IUserService uService, IFavoritesService favoritesService, ICommentService commentService, ICustomCategoryService customCategoryService, ICategoryService categoryService)
 {
     userService                = uService;
     articleService             = artService;
     base.commentService        = commentService;
     base.favoritesService      = favoritesService;
     base.customCategoryService = customCategoryService;
     base.categoryService       = categoryService;
 }
예제 #2
0
 public ArticleController(IArticleService articleService, IUserService userService, ICustomCategoryService customCategoryService, IMessageService messageService)
 {
     base.messageService        = messageService;
     base.userService           = userService;
     base.articleService        = articleService;
     base.customCategoryService = customCategoryService;
 }
예제 #3
0
 public UserController(IUserService userService, IArticleService articleService, IFavoritesService favoritesService, ICustomCategoryService customCategoryService)
 {
     base.favoritesService      = favoritesService;
     base.userService           = userService;
     base.articleService        = articleService;
     base.customCategoryService = customCategoryService;
 }
예제 #4
0
 public CategoryController(ICustomCategoryService customCategoryService, IUserService userService)
 {
     base.userService           = userService;
     base.customCategoryService = customCategoryService;
 }