public LocalizedGreetingsRow AddLocalizedGreetingsRow(GreetingsRow parentGreetingsRowByFK_Greetings_LocalizedGreetings, System.Guid LocalizedGreetingID, string Data, string Voice, string LanguageID, short Type) {
     LocalizedGreetingsRow rowLocalizedGreetingsRow = ((LocalizedGreetingsRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             LocalizedGreetingID,
             Data,
             Voice,
             LanguageID,
             Type};
     if ((parentGreetingsRowByFK_Greetings_LocalizedGreetings != null)) {
         columnValuesArray[0] = parentGreetingsRowByFK_Greetings_LocalizedGreetings[1];
     }
     rowLocalizedGreetingsRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowLocalizedGreetingsRow);
     return rowLocalizedGreetingsRow;
 }
 public GreetingsRowChangeEvent(GreetingsRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveGreetingsRow(GreetingsRow row) {
     this.Rows.Remove(row);
 }
 public void AddGreetingsRow(GreetingsRow row) {
     this.Rows.Add(row);
 }