Example #1
0
        // 2.5) Get store info

        // 2.6) Search

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