blob: 59267e409b06f895970756f947b682a2b96e7a70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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;
}
}
|