public void FixtureSetup()
        {
            Client = new RestContactClient(MockClient.User(), MockClient.Password());

            ContactId         = 165251012001;
            ContactListId     = 188505001;
            QueryContact      = new CfQueryContacts(1000, 0, null, null, null);
            GetContactHistory = new CfGetContactHistory(1000, 0, ContactId);
            var contact1 = new CfContact(null, "Contact1_Name", "Contact1_LastName", null, "14252163710", null, null, null, null, null);
            var contact2 = new CfContact(null, "Contact2_Name", "Contact2_LastName", null, "14252163710", null, null, null, null, null);

            CfContact[] contacts = { contact1, contact2 };
            CreateContactList = new CfCreateContactList(null, "NewContactListTest", false, new CfContactSource(contacts));

            object[] contacts2 = { ContactId };
            CreateContactList2 = new CfCreateContactList(null, "NewContactListTest", false, new CfContactSource(contacts2));

            var contactNumbers = new CfContactSourceNumbers("14252163710", new[] { "homePhone" });

            CfContactSourceNumbers[] contacts3 = { contactNumbers };
            CreateContactList3 = new CfCreateContactList(null, "NewContactListTest3", false, new CfContactSource(contacts3));

            QueryContactLists = new CfQuery();

            const long contactId     = 165332795001;
            const long contactListId = 188518001;

            object[] contact = { contactId };
            AddContactsToList = new CfContactListRequest(contactListId, false, new CfContactSource(contact));

            RemoveContactsFromList = new CfRemoveContactsFromList(contactListId, contactId);

            ContactLastName  = "ContactLastNameRest";
            ContactFirstName = "ContactFirstNameRest";
        }
        public void Test_GetContactHistoryMandatory()
        {
            var getContactHistory = new CfGetContactHistory
            {
                ContactId = 169299440001
            };
            var contactHistory = Client.GetContactHistory(getContactHistory);

            Assert.IsNotNull(contactHistory);
        }
        public void Test_GetContactHistoryComplete()
        {
            var getContactHistory = new CfGetContactHistory
            {
                ContactId   = 169299440001,
                FirstResult = 1,
                MaxResults  = 70
            };
            var contactHistory = Client.GetContactHistory(getContactHistory);

            Assert.IsNotNull(contactHistory);
        }
예제 #4
0
        public CfAction[] GetContactHistory(CfGetContactHistory getContactHistory)
        {
            if (getContactHistory == null)
            {
                return(null);
            }
            var resource = BaseRequest <Resource>(HttpMethod.Get, new GetContactHistory(getContactHistory),
                                                  new CallfireRestRoute <Contact>(getContactHistory.ContactId, null, ContactRestRouteObjects.History));
            var contactHistory = resource.Resources as ContactHistory;

            return(contactHistory == null || contactHistory.ContactHistory1 == null ? new CfAction[] {}
                : contactHistory.ContactHistory1.Select(ActionMapper.FromAction).ToArray());
        }
        public CfAction[] GetContactHistory(CfGetContactHistory getContactHistory)
        {
            var action = ContactService.GetContactHistory(new GetContactHistory(getContactHistory));

            return(action == null ? null : action.Select(ActionMapper.FromAction).ToArray());
        }
 public GetContactHistory(CfGetContactHistory getContactHistory)
     : base(getContactHistory.MaxResults, getContactHistory.FirstResult)
 {
     ContactId = getContactHistory.ContactId;
 }