Beispiel #1
0
 public void CopyTo(SysMidsvcConfig obj)
 {
     obj.ID          = this.ID;
     obj.BU          = this.BU;
     obj.SITE        = this.SITE;
     obj.STATUS      = this.STATUS;
     obj.MidSvcType  = this.MidSvcType;
     obj.MidSvcUrl   = this.MidSvcUrl;
     obj.MidSvcPort  = this.MidSvcPort;
     obj.ConnCount   = this.ConnCount;
     obj.CreatedDate = this.CreatedDate;
     obj.UpdatedDate = this.UpdatedDate;
     obj.UpdatedBy   = this.UpdatedBy;
     obj.POSITION    = this.POSITION;
 }
Beispiel #2
0
        public Object Clone()
        {
            SysMidsvcConfig obj = new SysMidsvcConfig();

            obj.ID = this.ID;

            obj.BU          = this.BU;
            obj.SITE        = this.SITE;
            obj.STATUS      = this.STATUS;
            obj.MidSvcType  = this.MidSvcType;
            obj.MidSvcUrl   = this.MidSvcUrl;
            obj.MidSvcPort  = this.MidSvcPort;
            obj.ConnCount   = this.ConnCount;
            obj.CreatedDate = this.CreatedDate;
            obj.UpdatedDate = this.UpdatedDate;
            obj.UpdatedBy   = this.UpdatedBy;
            obj.POSITION    = this.POSITION;

            return(obj);
        }