Advertisement
Guest User

Untitled

a guest
Apr 27th, 2013
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.19 KB | None | 0 0
  1. <?php
  2. abstract class AbstractUser extends \YetORM\Entity
  3. {
  4.  
  5.     /** @return string */
  6.     public function getAccout()
  7.     {
  8.     return $this->row->account;
  9.     }
  10.  
  11.     /** @return string */
  12.     public function getCity()
  13.     {
  14.     return $this->row->city;
  15.     }
  16.  
  17.     /** @return string */
  18.     public function getCompany()
  19.     {
  20.     return $this->row->company;
  21.     }
  22.  
  23.     /** @return int */
  24.     public function getCompanyID()
  25.     {
  26.     return $this->row->company_id;
  27.     }
  28.  
  29.     /** @return string */
  30.     public function getEmail()
  31.     {
  32.     return $this->row->email;
  33.     }
  34.  
  35.     /** @return string */
  36.     public function getFax()
  37.     {
  38.     return $this->row->fax;
  39.     }
  40.  
  41.     /** @return string */
  42.     public function getPhone()
  43.     {
  44.     return $this->row->phone;
  45.     }
  46.  
  47.     /** @return string */
  48.     public function getPostcode()
  49.     {
  50.     return $this->row->postcode;
  51.     }
  52.  
  53.     /** @return string */
  54.     public function getStreet()
  55.     {
  56.     return $this->row->street;
  57.     }
  58.  
  59.     /** @return int */
  60.     public function getTaxID()
  61.     {
  62.     return $this->row->tax_id;
  63.     }
  64.  
  65.     /** @return string */
  66.     public function getWebsite()
  67.     {
  68.     return $this->row->website;
  69.     }
  70.  
  71. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement