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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttbloerc.AddttbloercRow((pdsoercDataSet.ttbloercRow)row);
            this.SaveChanges();
            return(this.dataSet.ttbloerc.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloerc.Rows[0]) : null);
        }
コード例 #3
0
        public Oerc GetByRowId(string rowId, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fldList);
            Oerc oerc = null;

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

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

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