Esempio n. 1
0
        public Apsf BuildFromRow(DataRow row)
        {
            var returnRecord = Apsf.BuildApsfFromRow(row);

            returnRecord = this.BuildExtraFromRow <Apsf>(returnRecord, row);
            return(returnRecord);
        }
Esempio n. 2
0
        public Apsf Insert(Apsf record)
        {
            DataRow row = this.dataSet.ttblapsf.NewttblapsfRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblapsf.AddttblapsfRow((pdsapsfDataSet.ttblapsfRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblapsf.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblapsf.Rows[0]) : null);
        }
Esempio n. 3
0
        public Apsf GetByRowId(string rowId, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fldList);
            Apsf apsf = null;

            if (row != null)
            {
                apsf = this.BuildFromRow(row);
            }
            return(apsf);
        }
Esempio n. 4
0
        protected Apsf Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var  row  = this.dataSet.ttblapsf.AsEnumerable().SingleOrDefault();
            Apsf apsf = null;

            if (row != null)
            {
                apsf = this.BuildFromRow(row);
            }
            return(apsf);
        }
Esempio n. 5
0
        private void DeleteUseRowID(Apsf record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblapsf.NewttblapsfRow();
                Apsf.BuildMinimalRow(ref row, record);
                this.dataSet.ttblapsf.AddttblapsfRow((pdsapsfDataSet.ttblapsfRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Esempio n. 6
0
        public Apsf Update(Apsf record)
        {
            var row = this.GetRowByRowpointer(record.rowpointer, string.Empty);

            if (row != null)
            {
                this.UpdateToRow(ref row, record);
                this.ExtraUpdateToRow(ref row, record);
                this.SaveChanges();
                return(this.dataSet.ttblapsf.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblapsf.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Esempio n. 7
0
 public void Delete(Apsf record)
 {
     this.repository.Delete(record);
 }
Esempio n. 8
0
 public Apsf Update(Apsf record)
 {
     return(this.repository.Update(record));
 }
Esempio n. 9
0
 public Apsf Insert(Apsf record)
 {
     return(this.repository.Insert(record));
 }
Esempio n. 10
0
 public void Delete(Apsf record)
 {
     this.adapter.Delete(record);
 }
Esempio n. 11
0
 public Apsf Update(Apsf record)
 {
     return(this.adapter.Update(record));
 }
Esempio n. 12
0
 public Apsf Insert(Apsf record)
 {
     return(this.adapter.Insert(record));
 }
Esempio n. 13
0
 public void UpdateToRow(ref DataRow row, Apsf record)
 {
     Apsf.UpdateRowFromApsf(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }