Esempio n. 1
0
        public Sasge BuildFromRow(DataRow row)
        {
            var returnRecord = Sasge.BuildSasgeFromRow(row);

            returnRecord = this.BuildExtraFromRow <Sasge>(returnRecord, row);
            return(returnRecord);
        }
Esempio n. 2
0
        public Sasge Insert(Sasge record)
        {
            DataRow row = this.dataSet.ttblsasge.NewttblsasgeRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblsasge.AddttblsasgeRow((pdssasgeDataSet.ttblsasgeRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblsasge.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsasge.Rows[0]) : null);
        }
Esempio n. 3
0
        public Sasge GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Sasge sasge = null;

            if (row != null)
            {
                sasge = this.BuildFromRow(row);
            }
            return(sasge);
        }
Esempio n. 4
0
        protected Sasge Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttblsasge.AsEnumerable().SingleOrDefault();
            Sasge sasge = null;

            if (row != null)
            {
                sasge = this.BuildFromRow(row);
            }
            return(sasge);
        }
Esempio n. 5
0
        public void Delete(Sasge record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblsasge.NewttblsasgeRow();
                Sasge.BuildMinimalRow(ref row, record);
                this.dataSet.ttblsasge.AddttblsasgeRow((pdssasgeDataSet.ttblsasgeRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Esempio n. 6
0
        public Sasge Update(Sasge 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.ttblsasge.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsasge.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Esempio n. 7
0
 public void UpdateToRow(ref DataRow row, Sasge record)
 {
     Sasge.UpdateRowFromSasge(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Esempio n. 8
0
 public Sasge Insert(Sasge record)
 {
     return(this.repository.Insert(record));
 }
Esempio n. 9
0
 public void Delete(Sasge record)
 {
     this.repository.Delete(record);
 }
Esempio n. 10
0
 public Sasge Update(Sasge record)
 {
     return(this.repository.Update(record));
 }
Esempio n. 11
0
 public void Delete(Sasge record)
 {
     this.adapter.Delete(record);
 }
Esempio n. 12
0
 public Sasge Update(Sasge record)
 {
     return(this.adapter.Update(record));
 }
Esempio n. 13
0
 public Sasge Insert(Sasge record)
 {
     return(this.adapter.Insert(record));
 }