예제 #1
0
        public Icsei BuildFromRow(DataRow row)
        {
            var returnRecord = Icsei.BuildIcseiFromRow(row);

            returnRecord = this.BuildExtraFromRow <Icsei>(returnRecord, row);
            return(returnRecord);
        }
예제 #2
0
        public Icsei Insert(Icsei record)
        {
            DataRow row = this.dataSet.ttblicsei.NewttblicseiRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblicsei.AddttblicseiRow((pdsicseiDataSet.ttblicseiRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblicsei.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicsei.Rows[0]) : null);
        }
예제 #3
0
        public Icsei GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Icsei icsei = null;

            if (row != null)
            {
                icsei = this.BuildFromRow(row);
            }
            return(icsei);
        }
예제 #4
0
        protected Icsei Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttblicsei.AsEnumerable().SingleOrDefault();
            Icsei icsei = null;

            if (row != null)
            {
                icsei = this.BuildFromRow(row);
            }
            return(icsei);
        }
예제 #5
0
        private void DeleteUseRowID(Icsei record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblicsei.NewttblicseiRow();
                Icsei.BuildMinimalRow(ref row, record);
                this.dataSet.ttblicsei.AddttblicseiRow((pdsicseiDataSet.ttblicseiRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
예제 #6
0
        public Icsei Update(Icsei 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.ttblicsei.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicsei.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
예제 #7
0
 public void Delete(Icsei record)
 {
     this.repository.Delete(record);
 }
예제 #8
0
 public Icsei Update(Icsei record)
 {
     return(this.repository.Update(record));
 }
예제 #9
0
 public Icsei Insert(Icsei record)
 {
     return(this.repository.Insert(record));
 }
예제 #10
0
 public void UpdateToRow(ref DataRow row, Icsei record)
 {
     Icsei.UpdateRowFromIcsei(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
예제 #11
0
 public void Delete(Icsei record)
 {
     this.adapter.Delete(record);
 }
예제 #12
0
 public Icsei Update(Icsei record)
 {
     return(this.adapter.Update(record));
 }
예제 #13
0
 public Icsei Insert(Icsei record)
 {
     return(this.adapter.Insert(record));
 }