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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblsasgs.AddttblsasgsRow((pdssasgsDataSet.ttblsasgsRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblsasgs.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsasgs.Rows[0]) : null);
        }
예제 #3
0
        public Sasgs GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Sasgs sasgs = null;

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

            if (row != null)
            {
                sasgs = this.BuildFromRow(row);
            }
            return(sasgs);
        }
예제 #5
0
        public void Delete(Sasgs record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

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