コード例 #1
0
 private void Load(int classifierTypeId) {
   DataRow dataRow = StructureReader.GetClassifierType(classifierTypeId); 
   if (dataRow == null) {
     ErarioException exception = 
                     new ErarioException(ErarioException.Msg.ClassifierTypeIdNotFound, classifierTypeId);
     exception.Publish();
     throw exception;
   }
   LoadFields(dataRow);    
 }