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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblsasga.AddttblsasgaRow((pdssasgaDataSet.ttblsasgaRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblsasga.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsasga.Rows[0]) : null);
        }
Esempio n. 3
0
        public Sasga GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Sasga sasga = null;

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

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

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