public Inventory GetInventoryByLocationIdProductId(int locationId, int productId)
        {
            Inventory item = repo.GetInventoryByLocationIdProductId(locationId, productId);

            return(item);
        }