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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblvaelo.AddttblvaeloRow((pdsvaeloDataSet.ttblvaeloRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblvaelo.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblvaelo.Rows[0]) : null);
        }
Esempio n. 3
0
        public Vaelo GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Vaelo vaelo = null;

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

            if (row != null)
            {
                vaelo = this.BuildFromRow(row);
            }
            return(vaelo);
        }
Esempio n. 5
0
        public void Delete(Vaelo record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblvaelo.NewttblvaeloRow();
                Vaelo.BuildMinimalRow(ref row, record);
                this.dataSet.ttblvaelo.AddttblvaeloRow((pdsvaeloDataSet.ttblvaeloRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Esempio n. 6
0
        public Vaelo Update(Vaelo 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.ttblvaelo.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblvaelo.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Esempio n. 7
0
 public void Delete(Vaelo record)
 {
     this.repository.Delete(record);
 }
Esempio n. 8
0
 public Vaelo Update(Vaelo record)
 {
     return(this.repository.Update(record));
 }
Esempio n. 9
0
 public Vaelo Insert(Vaelo record)
 {
     return(this.repository.Insert(record));
 }
Esempio n. 10
0
 public void UpdateToRow(ref DataRow row, Vaelo record)
 {
     Vaelo.UpdateRowFromVaelo(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Esempio n. 11
0
 public void Delete(Vaelo record)
 {
     this.adapter.Delete(record);
 }
Esempio n. 12
0
 public Vaelo Update(Vaelo record)
 {
     return(this.adapter.Update(record));
 }
Esempio n. 13
0
 public Vaelo Insert(Vaelo record)
 {
     return(this.adapter.Insert(record));
 }