Exemplo n.º 1
0
        public void Delete(Oeehbr record)
        {
            var row = this.GetRowByRowId(record.rowID, string.Empty);

            if (row == null)
            {
                row = this.dataSet.ttbloeehbr.NewttbloeehbrRow();
                Oeehbr.BuildMinimalRow(ref row, record);
                this.dataSet.ttbloeehbr.AddttbloeehbrRow((pdsoeehbrDataSet.ttbloeehbrRow)row);
            }
            row.Delete();
            this.SaveChanges();
        }