public async Task <IActionResult> GetColorByProductId(Guid productId)
 {
     return(Ok(await colorService.GetColorByProductId(productId)));
 }