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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblsmsvp.AddttblsmsvpRow((pdssmsvpDataSet.ttblsmsvpRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblsmsvp.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsmsvp.Rows[0]) : null);
        }
Esempio n. 3
0
        public Smsvp GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Smsvp smsvp = null;

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

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

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