public ArquivosRow AddArquivosRow(string VirtualPath, System.Guid ID, ProjetoRow parentProjetoRowByFK_Configuracao_Arquivos) {
     ArquivosRow rowArquivosRow = ((ArquivosRow)(this.NewRow()));
     rowArquivosRow.ItemArray = new object[] {
             VirtualPath,
             ID,
             parentProjetoRowByFK_Configuracao_Arquivos[4]};
     this.Rows.Add(rowArquivosRow);
     return rowArquivosRow;
 }
 public void AddProjetoRow(ProjetoRow row) {
     this.Rows.Add(row);
 }
 public void RemoveProjetoRow(ProjetoRow row) {
     this.Rows.Remove(row);
 }
 public ProjetoRowChangeEvent(ProjetoRow row, System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }