public async Task <IActionResult> CreateAsk() { PersonView person = await this.personService.GetCurrentPersonViewAsync(); PostEditModel model = await postService.CreateNewEditModelAsync(PostType.Question, person); return(View(model)); }