Example #1
0
        public Icetc BuildFromRow(DataRow row)
        {
            var returnRecord = Icetc.BuildIcetcFromRow(row);

            returnRecord = this.BuildExtraFromRow <Icetc>(returnRecord, row);
            return(returnRecord);
        }
Example #2
0
        public Icetc Insert(Icetc record)
        {
            DataRow row = this.dataSet.ttblicetc.NewttblicetcRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblicetc.AddttblicetcRow((pdsicetcDataSet.ttblicetcRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblicetc.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicetc.Rows[0]) : null);
        }
Example #3
0
        public Icetc GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Icetc icetc = null;

            if (row != null)
            {
                icetc = this.BuildFromRow(row);
            }
            return(icetc);
        }
Example #4
0
        protected Icetc Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttblicetc.AsEnumerable().SingleOrDefault();
            Icetc icetc = null;

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

            if (row == null)
            {
                row = this.dataSet.ttblicetc.NewttblicetcRow();
                Icetc.BuildMinimalRow(ref row, record);
                this.dataSet.ttblicetc.AddttblicetcRow((pdsicetcDataSet.ttblicetcRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Example #6
0
        public Icetc Update(Icetc 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.ttblicetc.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicetc.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Example #7
0
 public void Delete(Icetc record)
 {
     this.repository.Delete(record);
 }
Example #8
0
 public Icetc Update(Icetc record)
 {
     return(this.repository.Update(record));
 }
Example #9
0
 public Icetc Insert(Icetc record)
 {
     return(this.repository.Insert(record));
 }
Example #10
0
 public void UpdateToRow(ref DataRow row, Icetc record)
 {
     Icetc.UpdateRowFromIcetc(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Example #11
0
 public Icetc Update(Icetc record)
 {
     return(this.adapter.Update(record));
 }
Example #12
0
 public Icetc Insert(Icetc record)
 {
     return(this.adapter.Insert(record));
 }
Example #13
0
 public void Delete(Icetc record)
 {
     this.adapter.Delete(record);
 }