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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblkpsg.AddttblkpsgRow((pdskpsgDataSet.ttblkpsgRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblkpsg.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblkpsg.Rows[0]) : null);
        }
Example #3
0
        public Kpsg GetByRowId(string rowId, bool fillMode, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fillMode, fldList);
            Kpsg kpsg = null;

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

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

            if (row == null)
            {
                row = this.dataSet.ttblkpsg.NewttblkpsgRow();
                Kpsg.BuildMinimalRow(ref row, record);
                this.dataSet.ttblkpsg.AddttblkpsgRow((pdskpsgDataSet.ttblkpsgRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Example #6
0
        public Kpsg Update(Kpsg 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.ttblkpsg.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblkpsg.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Example #7
0
 public void UpdateToRow(ref DataRow row, Kpsg record)
 {
     Kpsg.UpdateRowFromKpsg(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Example #8
0
 public void Delete(Kpsg record)
 {
     this.repository.Delete(record);
 }
Example #9
0
 public Kpsg Update(Kpsg record)
 {
     return(this.repository.Update(record));
 }
Example #10
0
 public Kpsg Insert(Kpsg record)
 {
     return(this.repository.Insert(record));
 }
Example #11
0
 public void Delete(Kpsg record)
 {
     this.adapter.Delete(record);
 }
Example #12
0
 public Kpsg Update(Kpsg record)
 {
     return(this.adapter.Update(record));
 }
Example #13
0
 public Kpsg Insert(Kpsg record)
 {
     return(this.adapter.Insert(record));
 }