Пример #1
0
        public Sasgl BuildFromRow(DataRow row)
        {
            var returnRecord = Sasgl.BuildSasglFromRow(row);

            returnRecord = this.BuildExtraFromRow <Sasgl>(returnRecord, row);
            return(returnRecord);
        }
Пример #2
0
        public Sasgl Insert(Sasgl record)
        {
            DataRow row = this.dataSet.ttblsasgl.NewttblsasglRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblsasgl.AddttblsasglRow((pdssasglDataSet.ttblsasglRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblsasgl.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsasgl.Rows[0]) : null);
        }
Пример #3
0
        public Sasgl GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Sasgl sasgl = null;

            if (row != null)
            {
                sasgl = this.BuildFromRow(row);
            }
            return(sasgl);
        }
Пример #4
0
        protected Sasgl Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttblsasgl.AsEnumerable().SingleOrDefault();
            Sasgl sasgl = null;

            if (row != null)
            {
                sasgl = this.BuildFromRow(row);
            }
            return(sasgl);
        }
Пример #5
0
        public void Delete(Sasgl record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblsasgl.NewttblsasglRow();
                Sasgl.BuildMinimalRow(ref row, record);
                this.dataSet.ttblsasgl.AddttblsasglRow((pdssasglDataSet.ttblsasglRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Пример #6
0
        public Sasgl Update(Sasgl 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.ttblsasgl.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsasgl.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Пример #7
0
 public void UpdateToRow(ref DataRow row, Sasgl record)
 {
     Sasgl.UpdateRowFromSasgl(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Пример #8
0
 public Sasgl Insert(Sasgl record)
 {
     return(this.repository.Insert(record));
 }
Пример #9
0
 public void Delete(Sasgl record)
 {
     this.repository.Delete(record);
 }
Пример #10
0
 public Sasgl Update(Sasgl record)
 {
     return(this.repository.Update(record));
 }
Пример #11
0
 public void Delete(Sasgl record)
 {
     this.adapter.Delete(record);
 }
Пример #12
0
 public Sasgl Update(Sasgl record)
 {
     return(this.adapter.Update(record));
 }
Пример #13
0
 public Sasgl Insert(Sasgl record)
 {
     return(this.adapter.Insert(record));
 }