예제 #1
0
    public void ConfirmAddContact()
    {
        API_AddContact_Set input = new API_AddContact_Set {
            contact = contact, userId = userID, address = address, email = email, coordinates = coordinates, phoneNumber = phoneNumber
        };

        api.AddContact(input);
    }
예제 #2
0
 public void AddContact(API_AddContact_Set set)
 {
     StartCoroutine(Post(CreateApiPostRequest("/AddContact.php", set), AddContact));
 }