public JsonResult GetOpportunitiesProductsByCustomerIdByInspectionId(Guid opportunityId)
        {
            var opportunities =
                OpportunityService.QueryOpportunityProductsByOpportunityId(GetHttpClient(), opportunityId);

            return(Json(opportunities, JsonRequestBehavior.AllowGet));
        }