blob: 8f4681a2e53eb6ab0ffe4e390ef49ec8a886758f (
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
49
50
51
52
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; }
}
}
}
|