Пример #1
0
 public GncCommodity(GncBook book, XElement xml)
     : this(book)
 {
     _space      = xml.ChkElement(GncName.Cmdty("space")).Value;
     _name       = xml.ChkElement(GncName.Cmdty("id")).Value;
     _identifier = MakeIdentifier(_space, _name);
 }
Пример #2
0
 public static string MakeIdentifier(XElement xml)
 {
     if (xml == null)
     {
         return(null);
     }
     else
     {
         return(MakeIdentifier(xml.ChkElement(GncName.Cmdty("space")).Value, xml.ChkElement(GncName.Cmdty("id")).Value));
     }
 }