コード例 #1
0
        public Oeehc BuildFromRow(DataRow row)
        {
            var returnRecord = Oeehc.BuildOeehcFromRow(row);

            returnRecord = this.BuildExtraFromRow <Oeehc>(returnRecord, row);
            return(returnRecord);
        }
コード例 #2
0
        public Oeehc Insert(Oeehc record)
        {
            DataRow row = this.dataSet.ttbloeehc.NewttbloeehcRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttbloeehc.AddttbloeehcRow((pdsoeehcDataSet.ttbloeehcRow)row);
            this.SaveChanges();
            return(this.dataSet.ttbloeehc.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloeehc.Rows[0]) : null);
        }
コード例 #3
0
        public Oeehc GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Oeehc oeehc = null;

            if (row != null)
            {
                oeehc = this.BuildFromRow(row);
            }
            return(oeehc);
        }
コード例 #4
0
        protected Oeehc Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttbloeehc.AsEnumerable().SingleOrDefault();
            Oeehc oeehc = null;

            if (row != null)
            {
                oeehc = this.BuildFromRow(row);
            }
            return(oeehc);
        }
コード例 #5
0
        public void Delete(Oeehc record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttbloeehc.NewttbloeehcRow();
                Oeehc.BuildMinimalRow(ref row, record);
                this.dataSet.ttbloeehc.AddttbloeehcRow((pdsoeehcDataSet.ttbloeehcRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
コード例 #6
0
        public Oeehc Update(Oeehc 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.ttbloeehc.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloeehc.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
コード例 #7
0
 public void Delete(Oeehc record)
 {
     this.adapter.Delete(record);
 }
コード例 #8
0
 public Oeehc Update(Oeehc record)
 {
     return(this.adapter.Update(record));
 }
コード例 #9
0
 public Oeehc Insert(Oeehc record)
 {
     return(this.adapter.Insert(record));
 }
コード例 #10
0
 public void UpdateToRow(ref DataRow row, Oeehc record)
 {
     Oeehc.UpdateRowFromOeehc(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
コード例 #11
0
 public void Delete(Oeehc record)
 {
     this.repository.Delete(record);
 }
コード例 #12
0
 public Oeehc Update(Oeehc record)
 {
     return(this.repository.Update(record));
 }
コード例 #13
0
 public Oeehc Insert(Oeehc record)
 {
     return(this.repository.Insert(record));
 }