/// <summary>
 /// Calls the Bind method of the device.
 /// </summary>
 public void Bind(BaseDataSet baseDataSet)
 {
     try
     {
         if (DeviceLogic.IsBound)
         {
             DeviceLogic.Bind(baseDataSet);
         }
     }
     catch (Exception ex)
     {
         log.WriteException(ex, CommPhrases.ErrorInDevice, nameof(Bind), DeviceLogic.Title);
     }
 }