public ProvidersRow AddProvidersRow(string AssociatedType, string Assembly, string Type)
            {
                ProvidersRow rowProvidersRow = ((ProvidersRow)(this.NewRow()));

                rowProvidersRow.ItemArray = new object[] {
                    AssociatedType,
                    Assembly,
                    Type
                };
                this.Rows.Add(rowProvidersRow);
                return(rowProvidersRow);
            }
 public ProvidersRowChangeEvent(ProvidersRow row, global::System.Data.DataRowAction action) {
     this.eventRow = row;
     this.eventAction = action;
 }
 public void RemoveProvidersRow(ProvidersRow row) {
     this.Rows.Remove(row);
 }
 public void AddProvidersRow(ProvidersRow row) {
     this.Rows.Add(row);
 }
 public ProjectsRow AddProjectsRow(string Name, string OriginalLocation, ProvidersRow parentProvidersRowByFK_Providers_Projects, string TemplateDirectory, string CodeGenerationPath, bool OrganizeCodeByProvider, bool EnableTrace) {
     ProjectsRow rowProjectsRow = ((ProjectsRow)(this.NewRow()));
     object[] columnValuesArray = new object[] {
             null,
             Name,
             OriginalLocation,
             null,
             TemplateDirectory,
             CodeGenerationPath,
             OrganizeCodeByProvider,
             EnableTrace};
     if ((parentProvidersRowByFK_Providers_Projects != null)) {
         columnValuesArray[3] = parentProvidersRowByFK_Providers_Projects[0];
     }
     rowProjectsRow.ItemArray = columnValuesArray;
     this.Rows.Add(rowProjectsRow);
     return rowProjectsRow;
 }
 public ProvidersRowChangeEvent(ProvidersRow row, System.Data.DataRowAction action)
 {
     this.eventRow    = row;
     this.eventAction = action;
 }
 public void RemoveProvidersRow(ProvidersRow row)
 {
     this.Rows.Remove(row);
 }
 public void AddProvidersRow(ProvidersRow row)
 {
     this.Rows.Add(row);
 }