예제 #1
0
 public BaseApiController(IWebApiResponseHandle webApiResponseHandle)
 {
     _webApiResponseHandle = webApiResponseHandle;
 }
예제 #2
0
 public CommentController(ICommentAppService commentAppService, IWebApiResponseHandle webApiResponseHandle)
     : base(webApiResponseHandle)
 {
     _commentAppService = commentAppService;
 }
예제 #3
0
 /// <summary>
 /// 111
 /// </summary>
 /// <param name="postAppService"></param>
 public PostController(IPostAppService postAppService, IWebApiResponseHandle webApiResponseHandle)
     : base(webApiResponseHandle)
 {
     _postAppService = postAppService;
 }