public async Task <IEnumerable <ProdutoViewModel> > GetCategoryForHomeAsync(string category, int marcaId)
        {
            var listModel = await _domainService.GetCategoryForHome(category, marcaId);

            return(await ToListViewModel(listModel).ConfigureAwait(false));
        }