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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblkpsk.AddttblkpskRow((pdskpskDataSet.ttblkpskRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblkpsk.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblkpsk.Rows[0]) : null);
        }
Example #3
0
        public Kpsk GetByRowId(string rowId, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fldList);
            Kpsk kpsk = null;

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

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

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