public async Task <bool> CreatePostAsync(PostDto post) { ValidatePostBeforeSave(post); return(!(await _postServices.Create(post) is null)); }