Beispiel #1
0
 public void UpdateUserInformation(string userId, UserInformationModel newModel)
 {
     _userDepo.UpdateUserInformation(userId, newModel.ToUserInformation());
 }
Beispiel #2
0
 public bool SaveUserInformation(string userId, UserInformationModel model)
 {
     return(_userDepo.AddUserInformation(userId, model.ToUserInformation()));
 }