Ejemplo n.º 1
0
        // 2.5) Get store info

        // 2.6) Search

        public List <string> SearchFilter(string sortOption, List <string> filters)
        {
            return(InventoryLogic.SearchFilter(sortOption, filters));
        }
Ejemplo n.º 2
0
 public ConcurrentDictionary <string, int> GetProductsFromShop(string storeName)
 {
     return(InventoryLogic.GetProductsFromShop(storeName));
 }
Ejemplo n.º 3
0
 public List <string> SearchByKeyWord(string keyWord)
 {
     return(InventoryLogic.SearchByKeyWord(keyWord));
 }
Ejemplo n.º 4
0
 public Dictionary <string, Product> GetInventory()
 {
     return(InventoryLogic.GetInventory());
 }
Ejemplo n.º 5
0
 public bool AddNewProduct(string barcode, string productName, string description, double price,
                           List <string> categories)
 {
     return(InventoryLogic.AddNewProduct(barcode, productName, description, price, categories));
 }