summaryrefslogtreecommitdiff
path: root/app/php/dto/CalendarDTO.php
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2016-03-12 12:35:30 +0100
committeremkael <emkael@tlen.pl>2016-03-12 12:35:30 +0100
commite4606f2d87be0073bcba02fc5878b768260f4a7f (patch)
tree0cda0cc09a657cc8f5f9dec580898c0c67d402d8 /app/php/dto/CalendarDTO.php
parent6096092a455fd640db18e57f54540e35ef51de97 (diff)
* calendar group DTOs
Diffstat (limited to 'app/php/dto/CalendarDTO.php')
-rw-r--r--app/php/dto/CalendarDTO.php19
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;
+ }
+
+}
+
+?>