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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblkitmst.AddttblkitmstRow((pdskitmstDataSet.ttblkitmstRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblkitmst.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblkitmst.Rows[0]) : null);
        }
Example #3
0
        public Kitmst GetByRowId(string rowId, string fldList)
        {
            var    row    = this.GetRowByRowId(rowId, fldList);
            Kitmst kitmst = null;

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

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

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