Ejemplo n.º 1
0
        public GetOpportunityContactsResponse GetOpportunityContacts(GetOpportunityContactsRequest request)
        {
            GetOpportunityContactsResponse response = new GetOpportunityContactsResponse();

            response.ContactIdList = opportunityRepository.GetOpportunityContactIds(request.OpportunityId);
            return(response);
        }