Advertisement
IDNPeterL

IPP .NET DevKit v2 - QBD Customer - Find By Id

May 31st, 2012
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.34 KB | None | 0 0
  1. //Retrieve QBD Customer by ID
  2. //Documentation: http://goo.gl/gF9BK
  3.  
  4. Intuit.Ipp.Data.Qbd.Customer qbdCustomer = new Intuit.Ipp.Data.Qbd.Customer();
  5. qbdCustomer.Id = new IdType() { idDomain = idDomainEnum.NG, Value = "3293689" };
  6. Intuit.Ipp.Data.Qbd.Customer customerResult = commonService.FindById<Intuit.Ipp.Data.Qbd.Customer>(qbdCustomer);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement