Esempio n. 1
0
 public UserVo(UsernameVo username, NameVo firstName, NameVo lastName, EmailVo email, AddressDto addressDto, GeoCoordinatesVo geoCoordinates, string clientConnection)
 {
     this.username         = username;
     this.firstName        = firstName;
     this.lastName         = lastName;
     this.email            = email;
     this.addressDto       = addressDto;
     this.geoCoordinates   = geoCoordinates;
     this.clientConnection = clientConnection;
 }
Esempio n. 2
0
 public CandidateVo(UsernameVo username, GeoCoordinatesVo geoCoordinates)
 {
     this.username       = username;
     this.GeoCoordinates = geoCoordinates;
 }