public List <Inventory> GetProductsForCustomerLocation()
        {
            List <Inventory> items;
            int locationId = customer.LocationId;

            items = inventoryServices.GetAllOfInventoryByLocationId(locationId);
            return(items);
        }
Exemple #2
0
        public List <Inventory> GetProductsByLocation(int locId)
        {
            List <Inventory> inventories = inventoryServices.GetAllOfInventoryByLocationId(locId);

            return(inventories);
        }