Ejemplo n.º 1
0
        public ICollection <LinkRecipient> GetLinkRecipientsByCampaignId(RecipientsInputModel input)
        {
            string requestString  = this.BuildRequestString(input);
            string responseString = this.MakeXMLRequest(requestString);

            return(this.xmlParser.ParseCampaignRecipentsXML(responseString));
        }
Ejemplo n.º 2
0
 private string BuildRequestString(RecipientsInputModel input)
 {
     // Use the XML provided and fill in the options tags.
     throw new System.NotImplementedException();
 }