Ejemplo n.º 1
0
 public void UpdateProperty(string property)
 {
     if (_viewHandler.VirtualView != null)
     {
         _mapper.UpdateProperty(_viewHandler, _viewHandler.VirtualView, property);
     }
 }
Ejemplo n.º 2
0
        public virtual void UpdateValue(string property)
        {
            if (VirtualView == null)
            {
                return;
            }

            _mapper?.UpdateProperty(this, VirtualView, property);
        }