Пример #1
0
        public Whmst BuildFromRow(DataRow row)
        {
            var returnRecord = Whmst.BuildWhmstFromRow(row);

            returnRecord = this.BuildExtraFromRow <Whmst>(returnRecord, row);
            return(returnRecord);
        }
Пример #2
0
        public Whmst Insert(Whmst record)
        {
            DataRow row = this.dataSet.ttblwhmst.NewttblwhmstRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblwhmst.AddttblwhmstRow((pdswhmstDataSet.ttblwhmstRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblwhmst.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblwhmst.Rows[0]) : null);
        }
Пример #3
0
        public Whmst GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Whmst whmst = null;

            if (row != null)
            {
                whmst = this.BuildFromRow(row);
            }
            return(whmst);
        }
Пример #4
0
        protected Whmst Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttblwhmst.AsEnumerable().SingleOrDefault();
            Whmst whmst = null;

            if (row != null)
            {
                whmst = this.BuildFromRow(row);
            }
            return(whmst);
        }
Пример #5
0
        public void Delete(Whmst record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblwhmst.NewttblwhmstRow();
                Whmst.BuildMinimalRow(ref row, record);
                this.dataSet.ttblwhmst.AddttblwhmstRow((pdswhmstDataSet.ttblwhmstRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Пример #6
0
        public Whmst Update(Whmst 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.ttblwhmst.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblwhmst.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Пример #7
0
 public Whmst Insert(Whmst record)
 {
     return(this.repository.Insert(record));
 }
Пример #8
0
 public void Delete(Whmst record)
 {
     this.repository.Delete(record);
 }
Пример #9
0
 public Whmst Update(Whmst record)
 {
     return(this.repository.Update(record));
 }
Пример #10
0
 public void UpdateToRow(ref DataRow row, Whmst record)
 {
     Whmst.UpdateRowFromWhmst(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Пример #11
0
 public void Delete(Whmst record)
 {
     this.adapter.Delete(record);
 }
Пример #12
0
 public Whmst Update(Whmst record)
 {
     return(this.adapter.Update(record));
 }
Пример #13
0
 public Whmst Insert(Whmst record)
 {
     return(this.adapter.Insert(record));
 }