Exemple #1
0
        public Swewh BuildFromRow(DataRow row)
        {
            var returnRecord = Swewh.BuildSwewhFromRow(row);

            returnRecord = this.BuildExtraFromRow <Swewh>(returnRecord, row);
            return(returnRecord);
        }
Exemple #2
0
        public Swewh Insert(Swewh record)
        {
            DataRow row = this.dataSet.ttblswewh.NewttblswewhRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblswewh.AddttblswewhRow((pdsswewhDataSet.ttblswewhRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblswewh.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblswewh.Rows[0]) : null);
        }
Exemple #3
0
        public Swewh GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Swewh swewh = null;

            if (row != null)
            {
                swewh = this.BuildFromRow(row);
            }
            return(swewh);
        }
Exemple #4
0
        protected Swewh Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttblswewh.AsEnumerable().SingleOrDefault();
            Swewh swewh = null;

            if (row != null)
            {
                swewh = this.BuildFromRow(row);
            }
            return(swewh);
        }
Exemple #5
0
        public void Delete(Swewh record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblswewh.NewttblswewhRow();
                Swewh.BuildMinimalRow(ref row, record);
                this.dataSet.ttblswewh.AddttblswewhRow((pdsswewhDataSet.ttblswewhRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Exemple #6
0
        public Swewh Update(Swewh 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.ttblswewh.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblswewh.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Exemple #7
0
 public void UpdateToRow(ref DataRow row, Swewh record)
 {
     Swewh.UpdateRowFromSwewh(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Exemple #8
0
 public void Delete(Swewh record)
 {
     this.repository.Delete(record);
 }
Exemple #9
0
 public Swewh Update(Swewh record)
 {
     return(this.repository.Update(record));
 }
Exemple #10
0
 public Swewh Insert(Swewh record)
 {
     return(this.repository.Insert(record));
 }
Exemple #11
0
 public void Delete(Swewh record)
 {
     this.adapter.Delete(record);
 }
Exemple #12
0
 public Swewh Update(Swewh record)
 {
     return(this.adapter.Update(record));
 }
Exemple #13
0
 public Swewh Insert(Swewh record)
 {
     return(this.adapter.Insert(record));
 }