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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblicswu.AddttblicswuRow((pdsicswuDataSet.ttblicswuRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblicswu.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicswu.Rows[0]) : null);
        }
Example #3
0
        public Icswu GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Icswu icswu = null;

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

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

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