Beispiel #1
0
        public Icsd BuildFromRow(DataRow row)
        {
            var returnRecord = Icsd.BuildIcsdFromRow(row);

            returnRecord = this.BuildExtraFromRow <Icsd>(returnRecord, row);
            return(returnRecord);
        }
Beispiel #2
0
        public Icsd Insert(Icsd record)
        {
            DataRow row = this.dataSet.ttblicsd.NewttblicsdRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblicsd.AddttblicsdRow((pdsicsdDataSet.ttblicsdRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblicsd.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicsd.Rows[0]) : null);
        }
Beispiel #3
0
        public Icsd GetByRowId(string rowId, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fldList);
            Icsd icsd = null;

            if (row != null)
            {
                icsd = this.BuildFromRow(row);
            }
            return(icsd);
        }
Beispiel #4
0
        protected Icsd Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var  row  = this.dataSet.ttblicsd.AsEnumerable().SingleOrDefault();
            Icsd icsd = null;

            if (row != null)
            {
                icsd = this.BuildFromRow(row);
            }
            return(icsd);
        }
Beispiel #5
0
        private void DeleteUseRowID(Icsd record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblicsd.NewttblicsdRow();
                Icsd.BuildMinimalRow(ref row, record);
                this.dataSet.ttblicsd.AddttblicsdRow((pdsicsdDataSet.ttblicsdRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Beispiel #6
0
        public Icsd Update(Icsd record)
        {
            var row = this.GetRowByRowpointer(record.rowpointer, string.Empty);

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