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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblicseu.AddttblicseuRow((pdsicseuDataSet.ttblicseuRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblicseu.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicseu.Rows[0]) : null);
        }
コード例 #3
0
        public Icseu GetByRowId(string rowId, bool fillMode, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fillMode, fldList);
            Icseu icseu = null;

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

            if (row != null)
            {
                icseu = this.BuildFromRow(row);
            }
            return(icseu);
        }
コード例 #5
0
        private void DeleteUseRowID(Icseu record)
        {
            var row = this.GetRowByRowId(record.rowID, false, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblicseu.NewttblicseuRow();
                Icseu.BuildMinimalRow(ref row, record);
                this.dataSet.ttblicseu.AddttblicseuRow((pdsicseuDataSet.ttblicseuRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
コード例 #6
0
        public Icseu Update(Icseu record)
        {
            var row = this.GetRowByRowpointer(record.rowpointer, false, string.Empty);

            if (row != null)
            {
                this.UpdateToRow(ref row, record);
                this.ExtraUpdateToRow(ref row, record);
                this.SaveChanges();
                return(this.dataSet.ttblicseu.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicseu.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
コード例 #7
0
 public void Delete(Icseu record)
 {
     this.adapter.Delete(record);
 }
コード例 #8
0
 public Icseu Update(Icseu record)
 {
     return(this.adapter.Update(record));
 }
コード例 #9
0
 public Icseu Insert(Icseu record)
 {
     return(this.adapter.Insert(record));
 }
コード例 #10
0
 public void UpdateToRow(ref DataRow row, Icseu record)
 {
     Icseu.UpdateRowFromIcseu(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
コード例 #11
0
 public void Delete(Icseu record)
 {
     this.repository.Delete(record);
 }
コード例 #12
0
 public Icseu Update(Icseu record)
 {
     return(this.repository.Update(record));
 }
コード例 #13
0
 public Icseu Insert(Icseu record)
 {
     return(this.repository.Insert(record));
 }