- <?php
-
-
-
- namespace domain\Document\Quotation;
-
- use domain\Document\Document\Document;
-
-
- class Quotation extends Document
- {
-
-
- public static function tableName()
- {
- return 'quotation';
- }
-
-
-
-
- public function getOrders()
- {
- return $this->relationOrders('id_quotation');
- }
- }
|