Ejemplo n.º 1
0
 private void FaceToData(ref CrmDictionary value)
 {
     value.Key = this.KeyID.Text;
     value.Value = this.ValueID.Text;
     value.Depict = this.DepictID.Text;
 }
Ejemplo n.º 2
0
 private void DataToFace(CrmDictionary value)
 {
     if (value != null)
     {
         this.KeyID.Text = value.Key;
         this.ValueID.Text = value.Value;
         this.DepictID.Text = value.Depict;
     }
 }