void AddErrorToDataList(Exception err, IDataListCompiler compiler, IDSFDataObject dataObject) { var errorString = err.Message; var errorResultTO = new ErrorResultTO(); errorResultTO.AddError(errorString); compiler.UpsertSystemTag(dataObject.DataListID, enSystemTag.Dev2Error, errorResultTO.MakeUserReady(), out errorsTo); }