Exemplo n.º 1
0
        public Swoeeh BuildFromRow(DataRow row)
        {
            var returnRecord = Swoeeh.BuildSwoeehFromRow(row);

            returnRecord = this.BuildExtraFromRow <Swoeeh>(returnRecord, row);
            return(returnRecord);
        }
Exemplo n.º 2
0
        public Swoeeh Insert(Swoeeh record)
        {
            DataRow row = this.dataSet.ttblswoeeh.NewttblswoeehRow();

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblswoeeh.AddttblswoeehRow((pdsswoeehDataSet.ttblswoeehRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblswoeeh.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblswoeeh.Rows[0]) : null);
        }
Exemplo n.º 3
0
        public Swoeeh GetByRowId(string rowId, string fldList)
        {
            var    row    = this.GetRowByRowId(rowId, fldList);
            Swoeeh swoeeh = null;

            if (row != null)
            {
                swoeeh = this.BuildFromRow(row);
            }
            return(swoeeh);
        }
Exemplo n.º 4
0
        protected Swoeeh Fetch(string where, int batchsize, string fldList)
        {
            this.FetchWhere(where, batchsize, fldList);
            var    row    = this.dataSet.ttblswoeeh.AsEnumerable().SingleOrDefault();
            Swoeeh swoeeh = null;

            if (row != null)
            {
                swoeeh = this.BuildFromRow(row);
            }
            return(swoeeh);
        }
Exemplo n.º 5
0
        public void Delete(Swoeeh record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttblswoeeh.NewttblswoeehRow();
                Swoeeh.BuildMinimalRow(ref row, record);
                this.dataSet.ttblswoeeh.AddttblswoeehRow((pdsswoeehDataSet.ttblswoeehRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }
Exemplo n.º 6
0
        public Swoeeh Update(Swoeeh 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.ttblswoeeh.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblswoeeh.Rows[0]) : null);
            }
            ErrorReportingHelper.ReportErrors("global.update.doesnotexist", 421);
            return(null);
        }
Exemplo n.º 7
0
 public Swoeeh Insert(Swoeeh record)
 {
     return(this.repository.Insert(record));
 }
Exemplo n.º 8
0
 public void Delete(Swoeeh record)
 {
     this.repository.Delete(record);
 }
Exemplo n.º 9
0
 public Swoeeh Update(Swoeeh record)
 {
     return(this.repository.Update(record));
 }
Exemplo n.º 10
0
 public void UpdateToRow(ref DataRow row, Swoeeh record)
 {
     Swoeeh.UpdateRowFromSwoeeh(ref row, record);
     this.ExtraUpdateToRow(ref row, record);
 }
Exemplo n.º 11
0
 public void Delete(Swoeeh record)
 {
     this.adapter.Delete(record);
 }
Exemplo n.º 12
0
 public Swoeeh Update(Swoeeh record)
 {
     return(this.adapter.Update(record));
 }
Exemplo n.º 13
0
 public Swoeeh Insert(Swoeeh record)
 {
     return(this.adapter.Insert(record));
 }