Browse Source

Update Create.cshtml.cs

pull/748/head
Yunus Emre Kalkan 7 years ago
parent
commit
efc861a0e3
  1. 4
      modules/blogging/src/Volo.Blogging.Web/Pages/Admin/Blogs/Create.cshtml.cs

4
modules/blogging/src/Volo.Blogging.Web/Pages/Admin/Blogs/Create.cshtml.cs

@ -35,9 +35,9 @@ namespace Volo.Blogging.Pages.Admin.Blogs
public async Task<IActionResult> OnPostAsync()
{
var language = ObjectMapper.Map<BlogCreateModalView, CreateBlogDto>(Blog);
var blogDto = ObjectMapper.Map<BlogCreateModalView, CreateBlogDto>(Blog);
await _blogAppService.Create(language);
await _blogAppService.Create(blogDto);
return NoContent();
}

Loading…
Cancel
Save