コード例 #1
0
 public IndexController(IUserServiceAgent userService, IPostServiceAgent postService, IDefaultsHelper defaultHelper)
 {
     _userServiceAgent = userService;
     _postServiceAgent = postService;
     _defaultHelper    = defaultHelper;
 }
コード例 #2
0
 public MyProfileFeedController(IUserServiceAgent userProfileRepo, IPostServiceAgent postService)
 {
     _userServiceAgent = userProfileRepo;
     _postServiceAgent = postService;
 }