Пример #1
0
 /**
  * Updates or inserts a contact
  * @param Contact $contact
  * @return Contact
  */
 public function save(Contact $contact)
 {
     return $this->connector->save($contact);
 }
Пример #2
0
 /**
  * Updates or inserts an invoice
  * @param Invoice $invoice
  * @return Invoice
  */
 public function save(Invoice $invoice)
 {
     return $this->connector->save($invoice);
 }
Пример #3
0
 /**
  * Updates or inserts an estimate
  * @param Estimate $estimate
  * @return Estimate
  */
 public function save(Estimate $estimate)
 {
     return $this->connector->save($estimate);
 }
Пример #4
0
 /**
  * Updates or inserts a template
  * @param RecurringTemplate $template
  * @return RecurringTemplate
  */
 public function save(RecurringTemplate $template)
 {
     return $this->connector->save($template);
 }