示例#1
0
 public IEnumerable<Payment> GetPayments(Invoice invoice)
 {
     throw new NotImplementedException();
 }
示例#2
0
 public Invoice GetHeader(Invoice invoice)
 {
     throw new NotImplementedException();
 }
示例#3
0
 public IEnumerable<Note> GetHistory(Invoice invoice)
 {
     throw new NotImplementedException();
 }
示例#4
0
 public IEnumerable<Address> GetAddresses(Invoice invoice)
 {
     throw new NotImplementedException();
 }
示例#5
0
 public IEnumerable<Email> GetEmails(Invoice invoice)
 {
     throw new NotImplementedException();
 }
示例#6
0
 public void AddPhone(Invoice invoice, Phone phone)
 {
     throw new NotImplementedException();
 }
示例#7
0
 public void AddService(Invoice invoice, PurchasedService service)
 {
     throw new NotImplementedException();
 }
示例#8
0
 public void AddNote(Invoice invoice, Note note)
 {
     throw new NotImplementedException();
 }
示例#9
0
 public void AddPayment(Invoice invoice, PrePaidCard card)
 {
     throw new NotImplementedException();
 }
示例#10
0
 public void AddEmail(Invoice invoice, Email email)
 {
     throw new NotImplementedException();
 }
示例#11
0
 public void AddAddress(Invoice invoice, Address address)
 {
     throw new NotImplementedException();
 }
示例#12
0
 public string GetReview(Invoice invoice)
 {
     throw new NotImplementedException();
 }
示例#13
0
 public IEnumerable<PurchasedService> GetPurchasedServices(Invoice invoice)
 {
     throw new NotImplementedException();
 }
示例#14
0
 public IEnumerable<Phone> GetPhontes(Invoice invoice)
 {
     throw new NotImplementedException();
 }