Exemple #1
0
        public Icamap BuildFromRow(DataRow row)
        {
            var returnRecord = Icamap.BuildIcamapFromRow(row);

            returnRecord = this.BuildExtraFromRow <Icamap>(returnRecord, row);
            return(returnRecord);
        }
Exemple #2
0
        public Icamap Insert(Icamap record)
        {
            DataRow row = this.dataSet.ttblicamap.NewttblicamapRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblicamap.AddttblicamapRow((pdsicamapDataSet.ttblicamapRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblicamap.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicamap.Rows[0]) : null);
        }
Exemple #3
0
        public Icamap GetByRowId(string rowId, bool fillMode, string fldList)
        {
            var    row    = this.GetRowByRowId(rowId, fillMode, fldList);
            Icamap icamap = null;

            if (row != null)
            {
                icamap = this.BuildFromRow(row);
            }
            return(icamap);
        }
Exemple #4
0
        protected Icamap Fetch(string where, bool fillMode, int batchsize, string fldList)
        {
            this.FetchWhere(where, fillMode, batchsize, fldList);
            var    row    = this.dataSet.ttblicamap.AsEnumerable().SingleOrDefault();
            Icamap icamap = null;

            if (row != null)
            {
                icamap = this.BuildFromRow(row);
            }
            return(icamap);
        }
Exemple #5
0
        public void Delete(Icamap record)
        {
            var row = this.GetRowByRowId(record.rowID, false, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblicamap.NewttblicamapRow();
                Icamap.BuildMinimalRow(ref row, record);
                this.dataSet.ttblicamap.AddttblicamapRow((pdsicamapDataSet.ttblicamapRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Exemple #6
0
        public Icamap Update(Icamap record)
        {
            var row = this.GetRowByRowId(record.rowID, false, string.Empty);

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