コード例 #1
0
        private async Task validateImage(int id)
        {
            var quote = await EcomakRepository.GetImageAsyncByIdImage(id);

            if (quote == null)
            {
                throw new NotFoundItemException($"cannot found product with id:{id}");
            }
        }