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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblinv_prob.Addttblinv_probRow((pdsinv_probDataSet.ttblinv_probRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblinv_prob.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblinv_prob.Rows[0]) : null);
        }
Exemple #3
0
        public InvProb GetByRowId(string rowId, string fldList)
        {
            var     row     = this.GetRowByRowId(rowId, fldList);
            InvProb invProb = null;

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

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

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