using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.Web; using DeiNiu.Utils; namespace DeiNiu.Wcf.erp.wcfData { [DataContract] public class Result { internal int id; internal enumDbResult status; public Result(int id, enumDbResult status) { this.id = id; this.status = status; } [DataMember] public int Id { get => id; set => id = value; } [DataMember] public enumDbResult Status { get => status; set => status = value; } } }