private void SetSelectedPhysicianClient(PhysicianClient physicianClient)
 {
     this.m_ClientOrderClone.ReportCopyTo = physicianClient.GetIdString();
     if (string.IsNullOrEmpty(this.m_ClientOrderClone.ReportCopyTo) == false)
     {
         string[] commaSplit = this.m_ClientOrderClone.ReportCopyTo.Split(',');
         if (commaSplit.Length == 2)
         {
             int physicianid = Convert.ToInt32(commaSplit[1]);
             int clientId    = Convert.ToInt32(commaSplit[0]);
             if (this.m_PhysicianClientCollection.Exists(physicianid, clientId) == true)
             {
                 this.m_SelectedPhysicianClient = this.m_PhysicianClientCollection.Get(physicianid, clientId);
             }
         }
         this.NotifyPropertyChanged("SelectPhysicianClient");
     }
 }