public Unit Handle(UpdatePostCommand input) { var post = _context.GetById <Post, int>(input.Id); _mapper.Map(input, post); return(Unit.Value); }
public PostEditDto Handle(GetPostByIdQuery input) { var post = _context.GetById <Post, int>(input.Id); return(_mapper.Map <PostEditDto>(post)); }