diff options
author | emkael <emkael@tlen.pl> | 2016-03-12 12:35:30 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-03-12 12:35:30 +0100 |
commit | e4606f2d87be0073bcba02fc5878b768260f4a7f (patch) | |
tree | 0cda0cc09a657cc8f5f9dec580898c0c67d402d8 /app/php/dto/CalendarDTO.php | |
parent | 6096092a455fd640db18e57f54540e35ef51de97 (diff) |
* calendar group DTOs
Diffstat (limited to 'app/php/dto/CalendarDTO.php')
-rw-r--r-- | app/php/dto/CalendarDTO.php | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/app/php/dto/CalendarDTO.php b/app/php/dto/CalendarDTO.php new file mode 100644 index 0000000..302fcf4 --- /dev/null +++ b/app/php/dto/CalendarDTO.php @@ -0,0 +1,19 @@ +<?php + +Prado::using('Application.model.Calendar'); + +class CalendarDTO { + + public $ID; + public $Name; + public $Website; + + public function loadRecord(Calendar $calendarRecord) { + $this->ID = $calendarRecord->UID; + $this->Name = $calendarRecord->Name; + $this->Website = $calendarRecord->Website; + } + +} + +?> |