private async Task validateImage(int id) { var quote = await EcomakRepository.GetImageAsyncByIdImage(id); if (quote == null) { throw new NotFoundItemException($"cannot found product with id:{id}"); } }