Exemplo n.º 1
0
 public ContactPhoneViewModel(ICallManager callManager, IContactPhoneLocal contactPhone)
 {
     _callManager = callManager;
     Id           = contactPhone.Id;
     Number       = contactPhone.Number;
     Comment      = contactPhone.Comment;
 }
Exemplo n.º 2
0
 public void UnWrap(IContactPhoneLocal contactPhone)
 {
     contactPhone.Number  = Number;
     contactPhone.Comment = Comment;
 }