comparison SilverlightValidation/SilverlightValidation.PL/Models/UserModel.cs @ 109:11994ccdc50b

First wave of tests complete
author stevenhollidge <stevenhollidge@hotmail.com>
date Sun, 06 May 2012 20:37:32 +0100
parents db05a55e3536
children
comparison
equal deleted inserted replaced
108:b728c44d9c61 109:11994ccdc50b
19 DateTime? dateOfBirth = null, 19 DateTime? dateOfBirth = null,
20 string descripton = "") 20 string descripton = "")
21 { 21 {
22 return new UserModel() 22 return new UserModel()
23 { 23 {
24 Username = "", 24 Username = username,
25 Password = "", 25 Password = password,
26 Email = "", 26 Email = email,
27 DateOfBirth = null, 27 DateOfBirth = dateOfBirth,
28 Description = "" 28 Description = descripton
29 }; 29 };
30 } 30 }
31 31
32 public IUserModel Clone() 32 public IUserModel Clone()
33 { 33 {