using Microsoft.AspNetCore.Mvc.Rendering; using Microsoft.eShopOnContainers.WebMVC.ViewModels; using System.Collections.Generic; using System.Threading.Tasks; namespace Microsoft.eShopOnContainers.WebMVC.Services { public interface ICatalogService { Task GetCatalogItems(int page, int take, int? brand, int? type); Task> GetBrands(); Task> GetTypes(); } }