You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
474 B
14 lines
474 B
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<CatalogIndexViewModel> GetCatalogItems(int pageIndex, int itemsPage, int? brandId, int? typeId);
|
|
Task<IEnumerable<SelectListItem>> GetBrands();
|
|
Task<IEnumerable<SelectListItem>> GetTypes();
|
|
}
|
|
}
|
|
|