[global::System.Diagnostics.DebuggerNonUserCodeAttribute(), global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter"), global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]public virtual SPDataProxy.SPNotesDataTable GetNote(global::System.Nullable<long> NoteID)
				{
					this.Adapter.SelectCommand = this.CommandCollection(1);
					if (NoteID.HasValue == true)
					{
						this.Adapter.SelectCommand.Parameters[1].Value = (long) NoteID.Value;
					}
					else
					{
						this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
					}
					SPDataProxy.SPNotesDataTable dataTable = new SPDataProxy.SPNotesDataTable();
					this.Adapter.Fill(dataTable);
					return dataTable;
				}
				[global::System.Diagnostics.DebuggerNonUserCodeAttribute(), global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter"), global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]public virtual SPDataProxy.SPNotesDataTable GetNotes()
				{
					this.Adapter.SelectCommand = this.CommandCollection(0);
					SPDataProxy.SPNotesDataTable dataTable = new SPDataProxy.SPNotesDataTable();
					this.Adapter.Fill(dataTable);
					return dataTable;
				}