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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblcmsa.AddttblcmsaRow((pdscmsaDataSet.ttblcmsaRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblcmsa.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblcmsa.Rows[0]) : null);
        }
Example #3
0
        public Cmsa GetByRowId(string rowId, string fldList)
        {
            var  row  = this.GetRowByRowId(rowId, fldList);
            Cmsa cmsa = null;

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

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

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