コード例 #1
0
        public Sasp BuildFromRow(DataRow row)
        {
            var returnRecord = Sasp.BuildSaspFromRow(row);

            returnRecord = this.BuildExtraFromRow <Sasp>(returnRecord, row);
            return(returnRecord);
        }
コード例 #2
0
        public Sasp Insert(Sasp record)
        {
            DataRow row = this.dataSet.ttblsasp.NewttblsaspRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblsasp.AddttblsaspRow((pdssaspDataSet.ttblsaspRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblsasp.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsasp.Rows[0]) : null);
        }
コード例 #3
0
        public Sasp GetByRowId(string rowId, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fldList);
            Sasp sasp = null;

            if (row != null)
            {
                sasp = this.BuildFromRow(row);
            }
            return(sasp);
        }
コード例 #4
0
        protected Sasp Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var  row  = this.dataSet.ttblsasp.AsEnumerable().SingleOrDefault();
            Sasp sasp = null;

            if (row != null)
            {
                sasp = this.BuildFromRow(row);
            }
            return(sasp);
        }
コード例 #5
0
        public void Delete(Sasp record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblsasp.NewttblsaspRow();
                Sasp.BuildMinimalRow(ref row, record);
                this.dataSet.ttblsasp.AddttblsaspRow((pdssaspDataSet.ttblsaspRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
コード例 #6
0
        public Sasp Update(Sasp 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.ttblsasp.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsasp.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
コード例 #7
0
 public Sasp Insert(Sasp record)
 {
     return(this.repository.Insert(record));
 }
コード例 #8
0
 public void Delete(Sasp record)
 {
     this.repository.Delete(record);
 }
コード例 #9
0
 public Sasp Update(Sasp record)
 {
     return(this.repository.Update(record));
 }
コード例 #10
0
 public void Delete(Sasp record)
 {
     this.adapter.Delete(record);
 }
コード例 #11
0
 public Sasp Update(Sasp record)
 {
     return(this.adapter.Update(record));
 }
コード例 #12
0
 public Sasp Insert(Sasp record)
 {
     return(this.adapter.Insert(record));
 }
コード例 #13
0
 public void UpdateToRow(ref DataRow row, Sasp record)
 {
     Sasp.UpdateRowFromSasp(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }