public void PointEnd(int number, Point point)
 {
     try
     {
         var args = new CalibrationPointEventArgs(number, point);
         RaiseEvent(args);
     }
     catch (Exception ex)
     {
         //ErrorLogger.WriteLine("CalibrationCommands, could not raise PointEnd, Message: " + ex.Message);
     }
 }
 public void PointStart(int number, Point point)
 {
     try
     {
         var args = new CalibrationPointEventArgs(number, point);
         RaiseEvent(args);
     }
     catch (Exception ex)
     {
         Console.WriteLine("CalibrationCommands, could not raise PointStart, Message: " + ex.Message);
     }
 }