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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttbloeehbr.AddttbloeehbrRow((pdsoeehbrDataSet.ttbloeehbrRow)row);
            this.SaveChanges();
            return(this.dataSet.ttbloeehbr.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloeehbr.Rows[0]) : null);
        }
Beispiel #3
0
        public Oeehbr GetByRowId(string rowId, string fldList)
        {
            var    row    = this.GetRowByRowId(rowId, fldList);
            Oeehbr oeehbr = null;

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

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

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