Example #1
0
        public AddressListDto ListAddressForInvoice(string sessionKey, string invoiceId)
        {
            AddressListDto retVal = new AddressListDto();

            retVal.Add(new AddressDto {
                Id = 1, Street = "5160 Tortor Road, Apt. G", City = "Ontario", State = "MD", Postal = "97630"
            });
            return(retVal);
        }
Example #2
0
 public AddressListDto ListAddressForInvoice(string sessionKey, string invoiceId)
 {
     AddressListDto retVal = new AddressListDto();
      retVal.Add(new AddressDto { Id = 1, Street = "5160 Tortor Road, Apt. G", City = "Ontario", State = "MD", Postal = "97630" });
      return retVal;
 }