using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.eShopWeb.Web.ViewModels; using System.Collections.Generic; using System.Threading.Tasks; namespace Microsoft.eShopWeb.Web.Services { public interface ICatalogViewModelService { Task GetCatalogItems(int pageIndex, int itemsPage, int? brandId, int? typeId); Task> GetBrands(); Task> GetTypes(); } }