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