Example #1
0
 public PostController(PostService.PostService postService, UserInfoService userInfoService)
 {
     _postService     = postService;
     _userInfoService = userInfoService;
 }
Example #2
0
 public ApplyController(PostService.PostService postService, UserInfoService userInfoService, ApplyService.ApplyService applyService)
 {
     _postService     = postService;
     _applyService    = applyService;
     _userInfoService = userInfoService;
 }