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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblpv_images.Addttblpv_imagesRow((pdspv_imagesDataSet.ttblpv_imagesRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblpv_images.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblpv_images.Rows[0]) : null);
        }
Exemplo n.º 3
0
        public PvImages GetByRowId(string rowId, string fldList)
        {
            var      row      = this.GetRowByRowId(rowId, fldList);
            PvImages pvImages = null;

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

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

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