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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblicsprc.AddttblicsprcRow((pdsicsprcDataSet.ttblicsprcRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblicsprc.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicsprc.Rows[0]) : null);
        }
コード例 #3
0
        public Icsprc GetByRowId(string rowId, string fldList)
        {
            var    row    = this.GetRowByRowId(rowId, fldList);
            Icsprc icsprc = null;

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

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

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