Beispiel #1
0
        public Glebt BuildFromRow(DataRow row)
        {
            var returnRecord = Glebt.BuildGlebtFromRow(row);

            returnRecord = this.BuildExtraFromRow <Glebt>(returnRecord, row);
            return(returnRecord);
        }
Beispiel #2
0
        public Glebt Insert(Glebt record)
        {
            DataRow row = this.dataSet.ttblglebt.NewttblglebtRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblglebt.AddttblglebtRow((pdsglebtDataSet.ttblglebtRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblglebt.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblglebt.Rows[0]) : null);
        }
Beispiel #3
0
        public Glebt GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Glebt glebt = null;

            if (row != null)
            {
                glebt = this.BuildFromRow(row);
            }
            return(glebt);
        }
Beispiel #4
0
        protected Glebt Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttblglebt.AsEnumerable().SingleOrDefault();
            Glebt glebt = null;

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

            if (row == null)
            {
                row = this.dataSet.ttblglebt.NewttblglebtRow();
                Glebt.BuildMinimalRow(ref row, record);
                this.dataSet.ttblglebt.AddttblglebtRow((pdsglebtDataSet.ttblglebtRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Beispiel #6
0
        public Glebt Update(Glebt 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.ttblglebt.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblglebt.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Beispiel #7
0
 public void Delete(Glebt record)
 {
     this.adapter.Delete(record);
 }
Beispiel #8
0
 public Glebt Update(Glebt record)
 {
     return(this.adapter.Update(record));
 }
Beispiel #9
0
 public Glebt Insert(Glebt record)
 {
     return(this.adapter.Insert(record));
 }
Beispiel #10
0
 public Glebt Insert(Glebt record)
 {
     return(this.repository.Insert(record));
 }
Beispiel #11
0
 public void Delete(Glebt record)
 {
     this.repository.Delete(record);
 }
Beispiel #12
0
 public Glebt Update(Glebt record)
 {
     return(this.repository.Update(record));
 }
Beispiel #13
0
 public void UpdateToRow(ref DataRow row, Glebt record)
 {
     Glebt.UpdateRowFromGlebt(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }