public async Task <ProductOptionListModel> GetOptions(Guid productId)
        {
            var model = new ProductOptionListModel {
                Items = await productOptionRepository.GetByProductIdAsync(productId)
            };

            return(model);
        }