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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblicsg.AddttblicsgRow((pdsicsgDataSet.ttblicsgRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblicsg.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicsg.Rows[0]) : null);
        }
Beispiel #3
0
        public Icsg GetByRowId(string rowId, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fldList);
            Icsg icsg = null;

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

            if (row != null)
            {
                icsg = this.BuildFromRow(row);
            }
            return(icsg);
        }
Beispiel #5
0
        public void Delete(Icsg record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblicsg.NewttblicsgRow();
                Icsg.BuildMinimalRow(ref row, record);
                this.dataSet.ttblicsg.AddttblicsgRow((pdsicsgDataSet.ttblicsgRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Beispiel #6
0
        public Icsg Update(Icsg 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.ttblicsg.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicsg.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Beispiel #7
0
 public void Delete(Icsg record)
 {
     this.repository.Delete(record);
 }
Beispiel #8
0
 public Icsg Update(Icsg record)
 {
     return(this.repository.Update(record));
 }
Beispiel #9
0
 public Icsg Insert(Icsg record)
 {
     return(this.repository.Insert(record));
 }
Beispiel #10
0
 public void Delete(Icsg record)
 {
     this.adapter.Delete(record);
 }
Beispiel #11
0
 public Icsg Update(Icsg record)
 {
     return(this.adapter.Update(record));
 }
Beispiel #12
0
 public Icsg Insert(Icsg record)
 {
     return(this.adapter.Insert(record));
 }
Beispiel #13
0
 public void UpdateToRow(ref DataRow row, Icsg record)
 {
     Icsg.UpdateRowFromIcsg(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }