Inheritance: IWriter
示例#1
0
 private CVT Map(CropVariety cropVariety)
 {
     var isoVariety = new CVT
     {
         B = cropVariety.Description,
     };
     isoVariety.A = isoVariety.GetIsoId(_cropVarietyIndex++);
     return isoVariety;
 }
示例#2
0
 public void Setup()
 {
     _cvt = new CVT();
     _output = new StringBuilder();
     _xmlBuilder = XmlWriter.Create(_output);
 }