Esempio n. 1
0
        public Rtmst BuildFromRow(DataRow row)
        {
            var returnRecord = Rtmst.BuildRtmstFromRow(row);

            returnRecord = this.BuildExtraFromRow <Rtmst>(returnRecord, row);
            return(returnRecord);
        }
Esempio n. 2
0
        public Rtmst Insert(Rtmst record)
        {
            DataRow row = this.dataSet.ttblrtmst.NewttblrtmstRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblrtmst.AddttblrtmstRow((pdsrtmstDataSet.ttblrtmstRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblrtmst.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrtmst.Rows[0]) : null);
        }
Esempio n. 3
0
        public Rtmst GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Rtmst rtmst = null;

            if (row != null)
            {
                rtmst = this.BuildFromRow(row);
            }
            return(rtmst);
        }
Esempio n. 4
0
        protected Rtmst Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttblrtmst.AsEnumerable().SingleOrDefault();
            Rtmst rtmst = null;

            if (row != null)
            {
                rtmst = this.BuildFromRow(row);
            }
            return(rtmst);
        }
Esempio n. 5
0
        public void Delete(Rtmst record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblrtmst.NewttblrtmstRow();
                Rtmst.BuildMinimalRow(ref row, record);
                this.dataSet.ttblrtmst.AddttblrtmstRow((pdsrtmstDataSet.ttblrtmstRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Esempio n. 6
0
        public Rtmst Update(Rtmst 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.ttblrtmst.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrtmst.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Esempio n. 7
0
 public Rtmst Insert(Rtmst record)
 {
     return(this.adapter.Insert(record));
 }
Esempio n. 8
0
 public void Delete(Rtmst record)
 {
     this.adapter.Delete(record);
 }
Esempio n. 9
0
 public Rtmst Update(Rtmst record)
 {
     return(this.adapter.Update(record));
 }
Esempio n. 10
0
 public void UpdateToRow(ref DataRow row, Rtmst record)
 {
     Rtmst.UpdateRowFromRtmst(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Esempio n. 11
0
 public void Delete(Rtmst record)
 {
     this.repository.Delete(record);
 }
Esempio n. 12
0
 public Rtmst Update(Rtmst record)
 {
     return(this.repository.Update(record));
 }
Esempio n. 13
0
 public Rtmst Insert(Rtmst record)
 {
     return(this.repository.Insert(record));
 }