using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Pur.Entity { class Measure { private string[] ordernos; public string[] Ordernos { get { return ordernos; } set { ordernos = value; } } private string orderno; public string Orderno { get { return orderno; } set { orderno = value; } } } }