Exemplo n.º 1
0
        public Vaspsv BuildFromRow(DataRow row)
        {
            var returnRecord = Vaspsv.BuildVaspsvFromRow(row);

            returnRecord = this.BuildExtraFromRow <Vaspsv>(returnRecord, row);
            return(returnRecord);
        }
Exemplo n.º 2
0
        public Vaspsv Insert(Vaspsv record)
        {
            DataRow row = this.dataSet.ttblvaspsv.NewttblvaspsvRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblvaspsv.AddttblvaspsvRow((pdsvaspsvDataSet.ttblvaspsvRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblvaspsv.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblvaspsv.Rows[0]) : null);
        }
Exemplo n.º 3
0
        public Vaspsv GetByRowId(string rowId, string fldList)
        {
            var    row    = this.GetRowByRowId(rowId, fldList);
            Vaspsv vaspsv = null;

            if (row != null)
            {
                vaspsv = this.BuildFromRow(row);
            }
            return(vaspsv);
        }
Exemplo n.º 4
0
        protected Vaspsv Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var    row    = this.dataSet.ttblvaspsv.AsEnumerable().SingleOrDefault();
            Vaspsv vaspsv = null;

            if (row != null)
            {
                vaspsv = this.BuildFromRow(row);
            }
            return(vaspsv);
        }
Exemplo n.º 5
0
        public void Delete(Vaspsv record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblvaspsv.NewttblvaspsvRow();
                Vaspsv.BuildMinimalRow(ref row, record);
                this.dataSet.ttblvaspsv.AddttblvaspsvRow((pdsvaspsvDataSet.ttblvaspsvRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Exemplo n.º 6
0
        public Vaspsv Update(Vaspsv 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.ttblvaspsv.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblvaspsv.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Exemplo n.º 7
0
 public void UpdateToRow(ref DataRow row, Vaspsv record)
 {
     Vaspsv.UpdateRowFromVaspsv(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Exemplo n.º 8
0
 public Vaspsv Insert(Vaspsv record)
 {
     return(this.repository.Insert(record));
 }
Exemplo n.º 9
0
 public void Delete(Vaspsv record)
 {
     this.repository.Delete(record);
 }
Exemplo n.º 10
0
 public Vaspsv Update(Vaspsv record)
 {
     return(this.repository.Update(record));
 }
Exemplo n.º 11
0
 public void Delete(Vaspsv record)
 {
     this.adapter.Delete(record);
 }
Exemplo n.º 12
0
 public Vaspsv Update(Vaspsv record)
 {
     return(this.adapter.Update(record));
 }
Exemplo n.º 13
0
 public Vaspsv Insert(Vaspsv record)
 {
     return(this.adapter.Insert(record));
 }