public async Task <CategoriaViewModel> Get(int id)
 {
     return(_mapper.Map <CategoriaViewModel>(await _categoriaService.BuscarPorIdAsync(id)));
 }