public TitleRow AddTitleRow(int Title_ID, string Title_Name, string Type, decimal Price, PublisherRow parentPublisherRowByFK__Title__Publisher__7F60ED59) {
     TitleRow rowTitleRow = ((TitleRow)(this.NewRow()));
     rowTitleRow.ItemArray = new object[] {
             Title_ID,
             Title_Name,
             Type,
             Price,
             parentPublisherRowByFK__Title__Publisher__7F60ED59[0]};
     this.Rows.Add(rowTitleRow);
     return rowTitleRow;
 }
 public void AddPublisherRow(PublisherRow row) {
     this.Rows.Add(row);
 }
 public void RemovePublisherRow(PublisherRow row) {
     this.Rows.Remove(row);
 }
 public PublisherRowChangeEvent(PublisherRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }