public void CustomerUpdateWithCustomerParams() { CustomerParams input = JsonConvert.DeserializeObject<CustomerParams>(CustomerInput); CustomerResponse actualResponse = customer.Update("TN344YY67HH09KK", input); CustomerCreationSuccessCheck(actualResponse.JsonResponse()); }
public void CustomerCreationWithCustomerParams() { CustomerParams input = JsonConvert.DeserializeObject<CustomerParams>(CustomerInput); CustomerResponse actualResponse = customer.Create(input); CustomerCreationSuccessCheck(actualResponse.JsonResponse()); }
public void CustomerCreationWithHashParam() { Hashtable input = JsonConvert.DeserializeObject<Hashtable>(CustomerInput); CustomerResponse actualResponse = customer.Create(input); CustomerCreationSuccessCheck(actualResponse.JsonResponse()); }
public void CustomerUpdateTest() { CustomerResponse actualResponse = customer.Update("TN344YY67HH09KK", "ABC company", "ABC site name"); CustomerCreationSuccessCheck(actualResponse.JsonResponse()); }
public void CustomerUpdateWithJsonParams() { CustomerResponse actualResponse = customer.Update("TN344YY67HH09KK", CustomerInput); CustomerCreationSuccessCheck(actualResponse.JsonResponse()); }
public void CustomerCreationTest() { CustomerResponse actualResponse = customer.Create("ABC company", "ABC site name"); CustomerCreationSuccessCheck(actualResponse.JsonResponse()); }
public void CustomerCreationWithJsonParams() { CustomerResponse actualResponse = customer.Create(CustomerInput); CustomerCreationSuccessCheck(actualResponse.JsonResponse()); }
public void GetCustomerByIdTest() { CustomerResponse actualResponse = customer.GetByCustomerId("TN344YY67HH09KK"); CustomerCreationSuccessCheck(actualResponse.JsonResponse()); }