예제 #1
0
 public PostService(IPostsApi postsApi)
 {
     _postsApi = postsApi;
 }
예제 #2
0
 public GetAllPostsQueryHandler(IPostsApi postsApi, IMapper mapper)
 {
     _postsApi = postsApi;
     _mapper   = mapper;
 }
예제 #3
0
 public CreatePostCommandHandler(IPostsApi postsApi, IMapper mapper)
 {
     _postsApi = postsApi;
     _mapper   = mapper;
 }