Example #1
0
        public Sastc BuildFromRow(DataRow row)
        {
            var returnRecord = Sastc.BuildSastcFromRow(row);

            returnRecord = this.BuildExtraFromRow <Sastc>(returnRecord, row);
            return(returnRecord);
        }
Example #2
0
        public Sastc Insert(Sastc record)
        {
            DataRow row = this.dataSet.ttblsastc.NewttblsastcRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblsastc.AddttblsastcRow((pdssastcDataSet.ttblsastcRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblsastc.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsastc.Rows[0]) : null);
        }
Example #3
0
        public Sastc GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Sastc sastc = null;

            if (row != null)
            {
                sastc = this.BuildFromRow(row);
            }
            return(sastc);
        }
Example #4
0
        protected Sastc Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var   row   = this.dataSet.ttblsastc.AsEnumerable().SingleOrDefault();
            Sastc sastc = null;

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

            if (row == null)
            {
                row = this.dataSet.ttblsastc.NewttblsastcRow();
                Sastc.BuildMinimalRow(ref row, record);
                this.dataSet.ttblsastc.AddttblsastcRow((pdssastcDataSet.ttblsastcRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Example #6
0
        public Sastc Update(Sastc 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.ttblsastc.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblsastc.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Example #7
0
 public Sastc Insert(Sastc record)
 {
     return(this.repository.Insert(record));
 }
Example #8
0
 public void Delete(Sastc record)
 {
     this.repository.Delete(record);
 }
Example #9
0
 public Sastc Update(Sastc record)
 {
     return(this.repository.Update(record));
 }
Example #10
0
 public void Delete(Sastc record)
 {
     this.adapter.Delete(record);
 }
Example #11
0
 public Sastc Update(Sastc record)
 {
     return(this.adapter.Update(record));
 }
Example #12
0
 public Sastc Insert(Sastc record)
 {
     return(this.adapter.Insert(record));
 }
Example #13
0
 public void UpdateToRow(ref DataRow row, Sastc record)
 {
     Sastc.UpdateRowFromSastc(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }