예제 #1
0
        public Oefill BuildFromRow(DataRow row)
        {
            var returnRecord = Oefill.BuildOefillFromRow(row);

            returnRecord = this.BuildExtraFromRow <Oefill>(returnRecord, row);
            return(returnRecord);
        }
예제 #2
0
        public Oefill Insert(Oefill record)
        {
            DataRow row = this.dataSet.ttbloefill.NewttbloefillRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttbloefill.AddttbloefillRow((pdsoefillDataSet.ttbloefillRow)row);
            this.SaveChanges();
            return(this.dataSet.ttbloefill.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloefill.Rows[0]) : null);
        }
예제 #3
0
        public Oefill GetByRowId(string rowId, string fldList)
        {
            var    row    = this.GetRowByRowId(rowId, fldList);
            Oefill oefill = null;

            if (row != null)
            {
                oefill = this.BuildFromRow(row);
            }
            return(oefill);
        }
예제 #4
0
        protected Oefill Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var    row    = this.dataSet.ttbloefill.AsEnumerable().SingleOrDefault();
            Oefill oefill = null;

            if (row != null)
            {
                oefill = this.BuildFromRow(row);
            }
            return(oefill);
        }
예제 #5
0
        public void Delete(Oefill record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttbloefill.NewttbloefillRow();
                Oefill.BuildMinimalRow(ref row, record);
                this.dataSet.ttbloefill.AddttbloefillRow((pdsoefillDataSet.ttbloefillRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
예제 #6
0
        public Oefill Update(Oefill 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.ttbloefill.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbloefill.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
예제 #7
0
 public void Delete(Oefill record)
 {
     this.repository.Delete(record);
 }
예제 #8
0
 public Oefill Update(Oefill record)
 {
     return(this.repository.Update(record));
 }
예제 #9
0
 public Oefill Insert(Oefill record)
 {
     return(this.repository.Insert(record));
 }
예제 #10
0
 public void Delete(Oefill record)
 {
     this.adapter.Delete(record);
 }
예제 #11
0
 public Oefill Update(Oefill record)
 {
     return(this.adapter.Update(record));
 }
예제 #12
0
 public Oefill Insert(Oefill record)
 {
     return(this.adapter.Insert(record));
 }
예제 #13
0
 public void UpdateToRow(ref DataRow row, Oefill record)
 {
     Oefill.UpdateRowFromOefill(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }