summaryrefslogtreecommitdiff
path: root/slips/src/app/Marina/Presentation/DTO/SlipDisplayDTO.cs
diff options
context:
space:
mode:
authormokhan <mokhan@da190166-9cfc-4ee1-ae03-434a172be219>2009-02-21 21:44:27 +0000
committermokhan <mokhan@da190166-9cfc-4ee1-ae03-434a172be219>2009-02-21 21:44:27 +0000
commit1dfdccb8118aeaa3cd844ac8de2a672c93312166 (patch)
tree4b19e7f816ab1019f180a46b68572af4b66fe4bc /slips/src/app/Marina/Presentation/DTO/SlipDisplayDTO.cs
parent42d66bcab8262c7b8b2452615df535e694a3ec1c (diff)
git-svn-id: http://svn.xp-dev.com/svn/mokhan-sait@2 da190166-9cfc-4ee1-ae03-434a172be219
Diffstat (limited to 'slips/src/app/Marina/Presentation/DTO/SlipDisplayDTO.cs')
-rw-r--r--slips/src/app/Marina/Presentation/DTO/SlipDisplayDTO.cs48
1 files changed, 48 insertions, 0 deletions
diff --git a/slips/src/app/Marina/Presentation/DTO/SlipDisplayDTO.cs b/slips/src/app/Marina/Presentation/DTO/SlipDisplayDTO.cs
new file mode 100644
index 0000000..59267e4
--- /dev/null
+++ b/slips/src/app/Marina/Presentation/DTO/SlipDisplayDTO.cs
@@ -0,0 +1,48 @@
+using System;
+
+namespace Marina.Presentation.DTO {
+ [Serializable]
+ public class SlipDisplayDTO {
+ private SlipDisplayDTO() {}
+
+ public SlipDisplayDTO( string dockId, string dockName, string width, string length, string locationName, string slipId ) {
+ _dockName = dockName;
+ _slipId = slipId;
+ _locationName = locationName;
+ _dockId = dockId;
+ _width = width;
+ _length = length;
+ }
+
+ public string DockName {
+ get { return _dockName; }
+ }
+
+ public string Width {
+ get { return _width; }
+ }
+
+ public string Length {
+ get { return _length; }
+ }
+
+ public string DockId {
+ get { return _dockId; }
+ }
+
+ public string LocationName {
+ get { return _locationName; }
+ }
+
+ public string SlipId {
+ get { return _slipId; }
+ }
+
+ private string _dockName;
+ private string _width;
+ private string _length;
+ private string _dockId;
+ private string _locationName;
+ private string _slipId;
+ }
+} \ No newline at end of file