public async Task <IActionResult> GetAll() { var blog = await _blogservices.GetAllAsync(); return(Ok(_mapper.Map <IEnumerable <BlogDto> >(blog))); }