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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblsyspar_type.Addttblsyspar_typeRow((pdssyspar_typeDataSet.ttblsyspar_typeRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblsyspar_type.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsyspar_type.Rows[0]) : null);
        }
コード例 #3
0
        public SysparType GetByRowId(string rowId, string fldList)
        {
            var        row        = this.GetRowByRowId(rowId, fldList);
            SysparType sysparType = null;

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

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

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