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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblrptdet.AddttblrptdetRow((pdsrptdetDataSet.ttblrptdetRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblrptdet.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblrptdet.Rows[0]) : null);
        }
Exemplo n.º 3
0
        public Rptdet GetByRowId(string rowId, string fldList)
        {
            var    row    = this.GetRowByRowId(rowId, fldList);
            Rptdet rptdet = null;

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

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

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