improve customer api & gui

This commit is contained in:
Roland Schneider
2021-10-02 22:21:14 +02:00
parent 1d065cc729
commit f98dcb656f
44 changed files with 893 additions and 298 deletions

View File

@@ -0,0 +1,27 @@
<?php
namespace customerapi\models\dto;
use yii\base\Model;
class RoomDTO extends Model
{
public $id;
public $name;
public $seat_count;
public $created_at;
public $updated_at;
public static function fromRoom($room)
{
$dto = new RoomDTO();
$dto->id = $room->id;
$dto->name = $room->name;
$dto->seat_count = $room->seat_count;
$dto->created_at = $room->created_at;
$dto->updated_at = $room->updated_at;
return $dto;
}
}