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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblpvcontainers.AddttblpvcontainersRow((pdspvcontainersDataSet.ttblpvcontainersRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblpvcontainers.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpvcontainers.Rows[0]) : null);
        }
Esempio n. 3
0
        public Pvcontainers GetByRowId(string rowId, string fldList)
        {
            var          row          = this.GetRowByRowId(rowId, fldList);
            Pvcontainers pvcontainers = null;

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

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

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