Example #1
0
        public Wlao BuildFromRow(DataRow row)
        {
            var returnRecord = Wlao.BuildWlaoFromRow(row);

            returnRecord = this.BuildExtraFromRow <Wlao>(returnRecord, row);
            return(returnRecord);
        }
Example #2
0
        public Wlao Insert(Wlao record)
        {
            DataRow row = this.dataSet.ttblwlao.NewttblwlaoRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblwlao.AddttblwlaoRow((pdswlaoDataSet.ttblwlaoRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblwlao.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblwlao.Rows[0]) : null);
        }
Example #3
0
        public Wlao GetByRowId(string rowId, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fldList);
            Wlao wlao = null;

            if (row != null)
            {
                wlao = this.BuildFromRow(row);
            }
            return(wlao);
        }
Example #4
0
        protected Wlao Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var  row  = this.dataSet.ttblwlao.AsEnumerable().SingleOrDefault();
            Wlao wlao = null;

            if (row != null)
            {
                wlao = this.BuildFromRow(row);
            }
            return(wlao);
        }
Example #5
0
        public void Delete(Wlao record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblwlao.NewttblwlaoRow();
                Wlao.BuildMinimalRow(ref row, record);
                this.dataSet.ttblwlao.AddttblwlaoRow((pdswlaoDataSet.ttblwlaoRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Example #6
0
        public Wlao Update(Wlao record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row != null)
            {
                this.UpdateToRow(ref row, record);
                this.ExtraUpdateToRow(ref row, record);
                this.SaveChanges();
                return(this.dataSet.ttblwlao.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblwlao.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Example #7
0
 public Wlao Insert(Wlao record)
 {
     return(this.repository.Insert(record));
 }
Example #8
0
 public void Delete(Wlao record)
 {
     this.repository.Delete(record);
 }
Example #9
0
 public Wlao Update(Wlao record)
 {
     return(this.repository.Update(record));
 }
Example #10
0
 public void Delete(Wlao record)
 {
     this.adapter.Delete(record);
 }
Example #11
0
 public Wlao Update(Wlao record)
 {
     return(this.adapter.Update(record));
 }
Example #12
0
 public Wlao Insert(Wlao record)
 {
     return(this.adapter.Insert(record));
 }
Example #13
0
 public void UpdateToRow(ref DataRow row, Wlao record)
 {
     Wlao.UpdateRowFromWlao(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }