示例#1
0
        public Sastch BuildFromRow(DataRow row)
        {
            var returnRecord = Sastch.BuildSastchFromRow(row);

            returnRecord = this.BuildExtraFromRow <Sastch>(returnRecord, row);
            return(returnRecord);
        }
示例#2
0
        public Sastch Insert(Sastch record)
        {
            DataRow row = this.dataSet.ttblsastch.NewttblsastchRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblsastch.AddttblsastchRow((pdssastchDataSet.ttblsastchRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblsastch.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsastch.Rows[0]) : null);
        }
示例#3
0
        public Sastch GetByRowId(string rowId, string fldList)
        {
            var    row    = this.GetRowByRowId(rowId, fldList);
            Sastch sastch = null;

            if (row != null)
            {
                sastch = this.BuildFromRow(row);
            }
            return(sastch);
        }
示例#4
0
        protected Sastch Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var    row    = this.dataSet.ttblsastch.AsEnumerable().SingleOrDefault();
            Sastch sastch = null;

            if (row != null)
            {
                sastch = this.BuildFromRow(row);
            }
            return(sastch);
        }
示例#5
0
        public void Delete(Sastch record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblsastch.NewttblsastchRow();
                Sastch.BuildMinimalRow(ref row, record);
                this.dataSet.ttblsastch.AddttblsastchRow((pdssastchDataSet.ttblsastchRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
示例#6
0
        public Sastch Update(Sastch 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.ttblsastch.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsastch.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
示例#7
0
 public void Delete(Sastch record)
 {
     this.adapter.Delete(record);
 }
示例#8
0
 public Sastch Update(Sastch record)
 {
     return(this.adapter.Update(record));
 }
示例#9
0
 public Sastch Insert(Sastch record)
 {
     return(this.adapter.Insert(record));
 }
示例#10
0
 public void Delete(Sastch record)
 {
     this.repository.Delete(record);
 }
示例#11
0
 public Sastch Update(Sastch record)
 {
     return(this.repository.Update(record));
 }
示例#12
0
 public Sastch Insert(Sastch record)
 {
     return(this.repository.Insert(record));
 }
示例#13
0
 public void UpdateToRow(ref DataRow row, Sastch record)
 {
     Sastch.UpdateRowFromSastch(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }