/***************************************************/ public bool RunCommand(IExecuteCommand command) { Engine.Base.Compute.RecordWarning($"The command {command.GetType().Name} is not supported by this Adapter."); return(false); }
// Fallback case private bool RunCommand(IExecuteCommand command) { BH.Engine.Base.Compute.RecordError($"The command {command.GetType().Name} is not supported by {this.GetType().Name}"); return(true); }