diff options
| author | mokhan <mokhan@da190166-9cfc-4ee1-ae03-434a172be219> | 2009-02-21 21:44:27 +0000 |
|---|---|---|
| committer | mokhan <mokhan@da190166-9cfc-4ee1-ae03-434a172be219> | 2009-02-21 21:44:27 +0000 |
| commit | 1dfdccb8118aeaa3cd844ac8de2a672c93312166 (patch) | |
| tree | 4b19e7f816ab1019f180a46b68572af4b66fe4bc /slips/src/app/Marina/Presentation/DTO/UpdateCustomerRegistrationDTO.cs | |
| parent | 42d66bcab8262c7b8b2452615df535e694a3ec1c (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/UpdateCustomerRegistrationDTO.cs')
| -rw-r--r-- | slips/src/app/Marina/Presentation/DTO/UpdateCustomerRegistrationDTO.cs | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/slips/src/app/Marina/Presentation/DTO/UpdateCustomerRegistrationDTO.cs b/slips/src/app/Marina/Presentation/DTO/UpdateCustomerRegistrationDTO.cs new file mode 100644 index 0000000..8f4681a --- /dev/null +++ b/slips/src/app/Marina/Presentation/DTO/UpdateCustomerRegistrationDTO.cs @@ -0,0 +1,53 @@ +using System;
+
+namespace Marina.Presentation.DTO {
+ [Serializable]
+ public class UpdateCustomerRegistrationDTO {
+ private long customerId;
+ private string username;
+ private string password;
+ private string firstName;
+ private string lastName;
+ private string phoneNumber;
+ private string city;
+
+ public UpdateCustomerRegistrationDTO( long customerId, string username, string password, string firstName,
+ string lastName, string phoneNumber, string city ) {
+ this.customerId = customerId;
+ this.username = username;
+ this.password = password;
+ this.firstName = firstName;
+ this.lastName = lastName;
+ this.phoneNumber = phoneNumber;
+ this.city = city;
+ }
+
+ public long CustomerId {
+ get { return customerId; }
+ }
+
+ public string Username {
+ get { return username; }
+ }
+
+ public string Password {
+ get { return password; }
+ }
+
+ public string FirstName {
+ get { return firstName; }
+ }
+
+ public string LastName {
+ get { return lastName; }
+ }
+
+ public string PhoneNumber {
+ get { return phoneNumber; }
+ }
+
+ public string City {
+ get { return city; }
+ }
+ }
+}
\ No newline at end of file |
