public async Task <bool> DeleteReview(string[] ids)
        {
            bool retval = true;

            foreach (string id in ids)
            {
                retval &= await _productReviewRepository.DeleteProductReviewMD(id);
            }

            return(retval);
        }