Пример #1
0
        public Oeel BuildFromRow(DataRow row)
        {
            var returnRecord = Oeel.BuildOeelFromRow(row);

            returnRecord = this.BuildExtraFromRow <Oeel>(returnRecord, row);
            return(returnRecord);
        }
Пример #2
0
        public Oeel Insert(Oeel record)
        {
            DataRow row = this.dataSet.ttbloeel.NewttbloeelRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttbloeel.AddttbloeelRow((pdsoeelDataSet.ttbloeelRow)row);
            this.SaveChanges();
            return(this.dataSet.ttbloeel.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloeel.Rows[0]) : null);
        }
Пример #3
0
        public Oeel GetByRowId(string rowId, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fldList);
            Oeel oeel = null;

            if (row != null)
            {
                oeel = this.BuildFromRow(row);
            }
            return(oeel);
        }
Пример #4
0
        protected Oeel Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var  row  = this.dataSet.ttbloeel.AsEnumerable().SingleOrDefault();
            Oeel oeel = null;

            if (row != null)
            {
                oeel = this.BuildFromRow(row);
            }
            return(oeel);
        }
Пример #5
0
        private void DeleteUseRowID(Oeel record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttbloeel.NewttbloeelRow();
                Oeel.BuildMinimalRow(ref row, record);
                this.dataSet.ttbloeel.AddttbloeelRow((pdsoeelDataSet.ttbloeelRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Пример #6
0
        public Oeel Update(Oeel record)
        {
            var row = this.GetRowByRowpointer(record.rowpointer, string.Empty);

            if (row != null)
            {
                this.UpdateToRow(ref row, record);
                this.ExtraUpdateToRow(ref row, record);
                this.SaveChanges();
                return(this.dataSet.ttbloeel.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloeel.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Пример #7
0
 public void Delete(Oeel record)
 {
     this.adapter.Delete(record);
 }
Пример #8
0
 public Oeel Update(Oeel record)
 {
     return(this.adapter.Update(record));
 }
Пример #9
0
 public Oeel Insert(Oeel record)
 {
     return(this.adapter.Insert(record));
 }
Пример #10
0
 public void Delete(Oeel record)
 {
     this.repository.Delete(record);
 }
Пример #11
0
 public Oeel Update(Oeel record)
 {
     return(this.repository.Update(record));
 }
Пример #12
0
 public Oeel Insert(Oeel record)
 {
     return(this.repository.Insert(record));
 }
Пример #13
0
 public void UpdateToRow(ref DataRow row, Oeel record)
 {
     Oeel.UpdateRowFromOeel(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }