public List <Inventory> GetAllInventoryItemsByLocationId(int locationId)
        {
            List <Inventory> items = repo.GetAllInventoryItemsByLocationId(locationId);

            return(items);
        }