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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblkpso.AddttblkpsoRow((pdskpsoDataSet.ttblkpsoRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblkpso.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblkpso.Rows[0]) : null);
        }
Example #3
0
        public Kpso GetByRowId(string rowId, bool fillMode, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fillMode, fldList);
            Kpso kpso = null;

            if (row != null)
            {
                kpso = this.BuildFromRow(row);
            }
            return(kpso);
        }
Example #4
0
        protected Kpso Fetch(string where, bool fillMode, int batchsize, string fldList)
        {
            this.FetchWhere(where, fillMode, batchsize, fldList);
            var  row  = this.dataSet.ttblkpso.AsEnumerable().SingleOrDefault();
            Kpso kpso = null;

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

            if (row == null)
            {
                row = this.dataSet.ttblkpso.NewttblkpsoRow();
                Kpso.BuildMinimalRow(ref row, record);
                this.dataSet.ttblkpso.AddttblkpsoRow((pdskpsoDataSet.ttblkpsoRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Example #6
0
        public Kpso Update(Kpso record)
        {
            var row = this.GetRowByRowId(record.rowID, false, string.Empty);

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