예제 #1
0
 /**
  * Deletes a contact
  * @param Contact $contact
  * @return self
  */
 public function delete(Contact $contact)
 {
     $this->connector->delete($contact);
     return $this;
 }
예제 #2
0
 /**
  * Deletes an invoice
  * @param Invoice $invoice
  * @return self
  */
 public function delete(Invoice $invoice)
 {
     $this->connector->delete($invoice);
     return $this;
 }
예제 #3
0
 /**
  * Deletes an estimate
  * @param Estimate $estimate
  * @return self
  */
 public function delete(Estimate $estimate)
 {
     $this->connector->delete($estimate);
     return $this;
 }
예제 #4
0
 /**
  * Deletes a template
  * @param RecurringTemplate $template
  * @return self
  */
 public function delete(RecurringTemplate $template)
 {
     $this->connector->delete($template);
     return $this;
 }