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