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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblsfcorpgrp.AddttblsfcorpgrpRow((pdssfcorpgrpDataSet.ttblsfcorpgrpRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblsfcorpgrp.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsfcorpgrp.Rows[0]) : null);
        }
Exemplo n.º 3
0
        public Sfcorpgrp GetByRowId(string rowId, string fldList)
        {
            var       row       = this.GetRowByRowId(rowId, fldList);
            Sfcorpgrp sfcorpgrp = null;

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

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

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