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

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

            this.UpdateToRow(ref row, record);
            this.ExtraUpdateToRow(ref row, record);
            this.dataSet.ttblicsca.AddttblicscaRow((pdsicscaDataSet.ttblicscaRow)row);
            this.SaveChanges();
            return(this.dataSet.ttblicsca.Rows.Count > 0 ? this.BuildFromRow(this.dataSet.ttblicsca.Rows[0]) : null);
        }
Example #3
0
        public Icsca GetByRowId(string rowId, string fldList)
        {
            var   row   = this.GetRowByRowId(rowId, fldList);
            Icsca icsca = null;

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

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

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