Ejemplo n.º 1
0
        public Jmelv BuildFromRow(DataRow row)
        {
            var returnRecord = Jmelv.BuildJmelvFromRow(row);

            returnRecord = this.BuildExtraFromRow <Jmelv>(returnRecord, row);
            return(returnRecord);
        }
Ejemplo n.º 2
0
        public Jmelv Insert(Jmelv record)
        {
            DataRow row = this.dataSet.ttbljmelv.NewttbljmelvRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttbljmelv.AddttbljmelvRow((pdsjmelvDataSet.ttbljmelvRow)row);
            this.SaveChanges();
            return(this.dataSet.ttbljmelv.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbljmelv.Rows[0]) : null);
        }
Ejemplo n.º 3
0
        public Jmelv GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Jmelv jmelv = null;

            if (row != null)
            {
                jmelv = this.BuildFromRow(row);
            }
            return(jmelv);
        }
Ejemplo n.º 4
0
        protected Jmelv Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttbljmelv.AsEnumerable().SingleOrDefault();
            Jmelv jmelv = null;

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

            if (row == null)
            {
                row = this.dataSet.ttbljmelv.NewttbljmelvRow();
                Jmelv.BuildMinimalRow(ref row, record);
                this.dataSet.ttbljmelv.AddttbljmelvRow((pdsjmelvDataSet.ttbljmelvRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Ejemplo n.º 6
0
        public Jmelv Update(Jmelv 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.ttbljmelv.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbljmelv.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Ejemplo n.º 7
0
 public void UpdateToRow(ref DataRow row, Jmelv record)
 {
     Jmelv.UpdateRowFromJmelv(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Ejemplo n.º 8
0
 public void Delete(Jmelv record)
 {
     this.repository.Delete(record);
 }
Ejemplo n.º 9
0
 public Jmelv Update(Jmelv record)
 {
     return(this.repository.Update(record));
 }
Ejemplo n.º 10
0
 public Jmelv Insert(Jmelv record)
 {
     return(this.repository.Insert(record));
 }
Ejemplo n.º 11
0
 public void Delete(Jmelv record)
 {
     this.adapter.Delete(record);
 }
Ejemplo n.º 12
0
 public Jmelv Update(Jmelv record)
 {
     return(this.adapter.Update(record));
 }
Ejemplo n.º 13
0
 public Jmelv Insert(Jmelv record)
 {
     return(this.adapter.Insert(record));
 }