Beispiel #1
0
        public T Copy <T>() where T : class, IModel, new()
        {
            T         obj     = new T();
            VatDetail objdata = obj as VatDetail;

            objdata.RecNo        = this.RecNo;
            objdata.BillTag      = this.BillTag;
            objdata.BillType     = this.BillType;
            objdata.BillCredit   = this.BillCredit;
            objdata.BillSeries   = this.BillSeries;
            objdata.BillNo       = this.BillNo;
            objdata.TaxPer       = this.TaxPer;
            objdata.TaxAmt       = this.TaxAmt;
            objdata.TaxRs        = this.TaxRs;
            objdata.CUser        = this.CUser;
            objdata.CDateTime    = this.CDateTime;
            objdata.EUser        = this.EUser;
            objdata.EDateTime    = this.EDateTime;
            objdata.CreatedBy    = this.CreatedBy;
            objdata.CreatedDate  = this.CreatedDate;
            objdata.UpdateddBy   = this.UpdateddBy;
            objdata.UpdatedDate  = this.UpdatedDate;
            objdata.UpdatedCount = this.UpdatedCount;
            objdata.LUT          = this.LUT;
            return(obj);
        }
Beispiel #2
0
        public void Clone <T>(T obj) where T : class, IModel
        {
            VatDetail objdata = obj as VatDetail;

            this.RecNo        = objdata.RecNo;
            this.BillTag      = objdata.BillTag;
            this.BillType     = objdata.BillType;
            this.BillCredit   = objdata.BillCredit;
            this.BillSeries   = objdata.BillSeries;
            this.BillNo       = objdata.BillNo;
            this.TaxPer       = objdata.TaxPer;
            this.TaxAmt       = objdata.TaxAmt;
            this.TaxRs        = objdata.TaxRs;
            this.CUser        = objdata.CUser;
            this.CDateTime    = objdata.CDateTime;
            this.EUser        = objdata.EUser;
            this.EDateTime    = objdata.EDateTime;
            this.CreatedBy    = objdata.CreatedBy;
            this.CreatedDate  = objdata.CreatedDate;
            this.UpdateddBy   = objdata.UpdateddBy;
            this.UpdatedDate  = objdata.UpdatedDate;
            this.UpdatedCount = objdata.UpdatedCount;
            this.LUT          = objdata.LUT;
        }