public Inventory GetInventoryItemByLocationId(int locationId)
        {
            Inventory inventory = inventRepo.GetInventoryItemByLocationId(locationId);

            return(inventory);
        }