public Inventory GetInventoryItemByInventoryId(int intentoryId)
        {
            Inventory inventory = inventRepo.GetInventoryItemByInventoryId(intentoryId);

            return(inventory);
        }