public async Task <IActionResult> GetAllByProduct(string productId)
        {
            var result = await _service.GetAllAsync(productId);

            return(new OperationActionResult(result));
        }