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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttbledil.AddttbledilRow((pdsedilDataSet.ttbledilRow)row);
            this.SaveChanges();
            return(this.dataSet.ttbledil.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttbledil.Rows[0]) : null);
        }
Exemple #3
0
        public Edil GetByRowId(string rowId, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fldList);
            Edil edil = null;

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

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

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