| 1 | <?php |
||
| 10 | class InsuranceDTO |
||
| 11 | { |
||
| 12 | /** @var string */ |
||
| 13 | public $insuranceId; |
||
| 14 | |||
| 15 | /** @var string */ |
||
| 16 | public $insurerId; |
||
| 17 | |||
| 18 | /** @var \DateTime */ |
||
| 19 | public $dateFrom; |
||
| 20 | |||
| 21 | /** @var \DateTime */ |
||
| 22 | public $dateTo; |
||
| 23 | |||
| 24 | /** @var string */ |
||
| 25 | public $type; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * InsuranceDTO constructor. |
||
| 29 | * |
||
| 30 | * @param string $insurerId |
||
| 31 | * @param \DateTime $dateFrom |
||
| 32 | * @param \DateTime $dateTo |
||
| 33 | * @param string $type |
||
| 34 | */ |
||
| 35 | public function __construct($insuranceId, $type, $dateFrom, $dateTo, $insurerId) |
||
| 43 | } |
||
| 44 |