private void Load(int classifierId) { DataRow dataRow = StructureReader.GetClassifier(classifierId); if (dataRow == null) { ErarioException exception = new ErarioException(ErarioException.Msg.ClassifierIdNotFound, classifierId); exception.Publish(); throw exception; } LoadFields(dataRow); }