Ejemplo n.º 1
0
 private static Micr GetMicr(XmlReader reader)
 {
     return(new Micr
     {
         Status = AttributeHelpers.GetMicrStatus(reader.GetAttribute("Status")),
         RtStatus = AttributeHelpers.GetRtStatus(reader.GetAttribute("RtStatus")),
         CheckType = AttributeHelpers.GetCheckType(reader.GetAttribute("CheckType")),
         Side = AttributeHelpers.GetSide(reader.GetAttribute("Side")),
         Value = reader.GetAttribute("Value")
     });
 }