示例#1
0
        public Smsew GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Smsew smsew = null;

            if (row != null)
            {
                smsew = this.BuildFromRow(row);
            }
            return(smsew);
        }
示例#2
0
        protected Smsew Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttblsmsew.AsEnumerable().SingleOrDefault();
            Smsew smsew = null;

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

            if (row == null)
            {
                row = this.dataSet.ttblsmsew.NewttblsmsewRow();
                Smsew.BuildMinimalRow(ref row, record);
                this.dataSet.ttblsmsew.AddttblsmsewRow((pdssmsewDataSet.ttblsmsewRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
示例#4
0
        public Smsew Update(Smsew 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.ttblsmsew.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsmsew.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
示例#5
0
 public void UpdateToRow(ref DataRow row, Smsew record)
 {
     Smsew.UpdateRowFromSmsew(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
示例#6
0
 public void Delete(Smsew record)
 {
     this.adapter.Delete(record);
 }
示例#7
0
 public Smsew Update(Smsew record)
 {
     return(this.adapter.Update(record));
 }
示例#8
0
 public Smsew Insert(Smsew record)
 {
     return(this.adapter.Insert(record));
 }
示例#9
0
 public void Delete(Smsew record)
 {
     this.repository.Delete(record);
 }
示例#10
0
 public Smsew Update(Smsew record)
 {
     return(this.repository.Update(record));
 }
示例#11
0
 public Smsew Insert(Smsew record)
 {
     return(this.repository.Insert(record));
 }