Example #1
0
        public Cmfus BuildFromRow(DataRow row)
        {
            var returnRecord = Cmfus.BuildCmfusFromRow(row);

            returnRecord = this.BuildExtraFromRow <Cmfus>(returnRecord, row);
            return(returnRecord);
        }
Example #2
0
        public Cmfus Insert(Cmfus record)
        {
            DataRow row = this.dataSet.ttblcmfus.NewttblcmfusRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblcmfus.AddttblcmfusRow((pdscmfusDataSet.ttblcmfusRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblcmfus.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblcmfus.Rows[0]) : null);
        }
Example #3
0
        public Cmfus GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Cmfus cmfus = null;

            if (row != null)
            {
                cmfus = this.BuildFromRow(row);
            }
            return(cmfus);
        }
Example #4
0
        protected Cmfus Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttblcmfus.AsEnumerable().SingleOrDefault();
            Cmfus cmfus = null;

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

            if (row == null)
            {
                row = this.dataSet.ttblcmfus.NewttblcmfusRow();
                Cmfus.BuildMinimalRow(ref row, record);
                this.dataSet.ttblcmfus.AddttblcmfusRow((pdscmfusDataSet.ttblcmfusRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Example #6
0
        public Cmfus Update(Cmfus 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.ttblcmfus.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblcmfus.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Example #7
0
 public void UpdateToRow(ref DataRow row, Cmfus record)
 {
     Cmfus.UpdateRowFromCmfus(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Example #8
0
 public void Delete(Cmfus record)
 {
     this.adapter.Delete(record);
 }
Example #9
0
 public Cmfus Update(Cmfus record)
 {
     return(this.adapter.Update(record));
 }
Example #10
0
 public Cmfus Insert(Cmfus record)
 {
     return(this.adapter.Insert(record));
 }
Example #11
0
 public Cmfus Update(Cmfus record)
 {
     return(this.repository.Update(record));
 }
Example #12
0
 public Cmfus Insert(Cmfus record)
 {
     return(this.repository.Insert(record));
 }
Example #13
0
 public void Delete(Cmfus record)
 {
     this.repository.Delete(record);
 }