using GadgetsOnline.Models; using System.Collections.Generic; namespace GadgetsOnline.Services { public interface IInventory { List GetAllCategories(); List GetAllProductsInCategory(string category); List GetBestSellers(int count); Product GetProductById(int id); string GetProductNameById(int id); } }