//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.312
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
#pragma warning disable 1591
namespace Ruben {
using System;
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[Serializable()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.ComponentModel.ToolboxItem(true)]
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema")]
[System.Xml.Serialization.XmlRootAttribute("DataSet")]
[System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")]
public partial class DataSet : System.Data.DataSet {
private CompetitionDataTable tableCompetition;
private TeamsDataTable tableTeams;
private LocationsDataTable tableLocations;
private ScheduleDataTable tableSchedule;
private CompetitionTypeDataTable tableCompetitionType;
private System.Data.SchemaSerializationMode _schemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public DataSet() {
this.BeginInit();
this.InitClass();
System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
base.Tables.CollectionChanged += schemaChangedHandler;
base.Relations.CollectionChanged += schemaChangedHandler;
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected DataSet(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context, false) {
if ((this.IsBinarySerialized(info, context) == true)) {
this.InitVars(false);
System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
this.Tables.CollectionChanged += schemaChangedHandler1;
this.Relations.CollectionChanged += schemaChangedHandler1;
return;
}
string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string))));
if ((this.DetermineSchemaSerializationMode(info, context) == System.Data.SchemaSerializationMode.IncludeSchema)) {
System.Data.DataSet ds = new System.Data.DataSet();
ds.ReadXmlSchema(new System.Xml.XmlTextReader(new System.IO.StringReader(strSchema)));
if ((ds.Tables["Competition"] != null)) {
base.Tables.Add(new CompetitionDataTable(ds.Tables["Competition"]));
}
if ((ds.Tables["Teams"] != null)) {
base.Tables.Add(new TeamsDataTable(ds.Tables["Teams"]));
}
if ((ds.Tables["Locations"] != null)) {
base.Tables.Add(new LocationsDataTable(ds.Tables["Locations"]));
}
if ((ds.Tables["Schedule"] != null)) {
base.Tables.Add(new ScheduleDataTable(ds.Tables["Schedule"]));
}
if ((ds.Tables["CompetitionType"] != null)) {
base.Tables.Add(new CompetitionTypeDataTable(ds.Tables["CompetitionType"]));
}
this.DataSetName = ds.DataSetName;
this.Prefix = ds.Prefix;
this.Namespace = ds.Namespace;
this.Locale = ds.Locale;
this.CaseSensitive = ds.CaseSensitive;
this.EnforceConstraints = ds.EnforceConstraints;
this.Merge(ds, false, System.Data.MissingSchemaAction.Add);
this.InitVars();
}
else {
this.ReadXmlSchema(new System.Xml.XmlTextReader(new System.IO.StringReader(strSchema)));
}
this.GetSerializationData(info, context);
System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
base.Tables.CollectionChanged += schemaChangedHandler;
this.Relations.CollectionChanged += schemaChangedHandler;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
[System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)]
public CompetitionDataTable Competition {
get {
return this.tableCompetition;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
[System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)]
public TeamsDataTable Teams {
get {
return this.tableTeams;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
[System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)]
public LocationsDataTable Locations {
get {
return this.tableLocations;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
[System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)]
public ScheduleDataTable Schedule {
get {
return this.tableSchedule;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
[System.ComponentModel.DesignerSerializationVisibility(System.ComponentModel.DesignerSerializationVisibility.Content)]
public CompetitionTypeDataTable CompetitionType {
get {
return this.tableCompetitionType;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.BrowsableAttribute(true)]
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Visible)]
public override System.Data.SchemaSerializationMode SchemaSerializationMode {
get {
return this._schemaSerializationMode;
}
set {
this._schemaSerializationMode = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
public new System.Data.DataTableCollection Tables {
get {
return base.Tables;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.DesignerSerializationVisibilityAttribute(System.ComponentModel.DesignerSerializationVisibility.Hidden)]
public new System.Data.DataRelationCollection Relations {
get {
return base.Relations;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void InitializeDerivedDataSet() {
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataSet Clone() {
DataSet cln = ((DataSet)(base.Clone()));
cln.InitVars();
cln.SchemaSerializationMode = this.SchemaSerializationMode;
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override bool ShouldSerializeTables() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override bool ShouldSerializeRelations() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void ReadXmlSerializable(System.Xml.XmlReader reader) {
if ((this.DetermineSchemaSerializationMode(reader) == System.Data.SchemaSerializationMode.IncludeSchema)) {
this.Reset();
System.Data.DataSet ds = new System.Data.DataSet();
ds.ReadXml(reader);
if ((ds.Tables["Competition"] != null)) {
base.Tables.Add(new CompetitionDataTable(ds.Tables["Competition"]));
}
if ((ds.Tables["Teams"] != null)) {
base.Tables.Add(new TeamsDataTable(ds.Tables["Teams"]));
}
if ((ds.Tables["Locations"] != null)) {
base.Tables.Add(new LocationsDataTable(ds.Tables["Locations"]));
}
if ((ds.Tables["Schedule"] != null)) {
base.Tables.Add(new ScheduleDataTable(ds.Tables["Schedule"]));
}
if ((ds.Tables["CompetitionType"] != null)) {
base.Tables.Add(new CompetitionTypeDataTable(ds.Tables["CompetitionType"]));
}
this.DataSetName = ds.DataSetName;
this.Prefix = ds.Prefix;
this.Namespace = ds.Namespace;
this.Locale = ds.Locale;
this.CaseSensitive = ds.CaseSensitive;
this.EnforceConstraints = ds.EnforceConstraints;
this.Merge(ds, false, System.Data.MissingSchemaAction.Add);
this.InitVars();
}
else {
this.ReadXml(reader);
this.InitVars();
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Xml.Schema.XmlSchema GetSchemaSerializable() {
System.IO.MemoryStream stream = new System.IO.MemoryStream();
this.WriteXmlSchema(new System.Xml.XmlTextWriter(stream, null));
stream.Position = 0;
return System.Xml.Schema.XmlSchema.Read(new System.Xml.XmlTextReader(stream), null);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.InitVars(true);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars(bool initTable) {
this.tableCompetition = ((CompetitionDataTable)(base.Tables["Competition"]));
if ((initTable == true)) {
if ((this.tableCompetition != null)) {
this.tableCompetition.InitVars();
}
}
this.tableTeams = ((TeamsDataTable)(base.Tables["Teams"]));
if ((initTable == true)) {
if ((this.tableTeams != null)) {
this.tableTeams.InitVars();
}
}
this.tableLocations = ((LocationsDataTable)(base.Tables["Locations"]));
if ((initTable == true)) {
if ((this.tableLocations != null)) {
this.tableLocations.InitVars();
}
}
this.tableSchedule = ((ScheduleDataTable)(base.Tables["Schedule"]));
if ((initTable == true)) {
if ((this.tableSchedule != null)) {
this.tableSchedule.InitVars();
}
}
this.tableCompetitionType = ((CompetitionTypeDataTable)(base.Tables["CompetitionType"]));
if ((initTable == true)) {
if ((this.tableCompetitionType != null)) {
this.tableCompetitionType.InitVars();
}
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.DataSetName = "DataSet";
this.Prefix = "";
this.Namespace = "http://tempuri.org/DataSet.xsd";
this.EnforceConstraints = true;
this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
this.tableCompetition = new CompetitionDataTable();
base.Tables.Add(this.tableCompetition);
this.tableTeams = new TeamsDataTable();
base.Tables.Add(this.tableTeams);
this.tableLocations = new LocationsDataTable();
base.Tables.Add(this.tableLocations);
this.tableSchedule = new ScheduleDataTable();
base.Tables.Add(this.tableSchedule);
this.tableCompetitionType = new CompetitionTypeDataTable();
base.Tables.Add(this.tableCompetitionType);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializeCompetition() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializeTeams() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializeLocations() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializeSchedule() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private bool ShouldSerializeCompetitionType() {
return false;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void SchemaChanged(object sender, System.ComponentModel.CollectionChangeEventArgs e) {
if ((e.Action == System.ComponentModel.CollectionChangeAction.Remove)) {
this.InitVars();
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(System.Xml.Schema.XmlSchemaSet xs) {
DataSet ds = new DataSet();
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
xs.Add(ds.GetSchemaSerializable());
System.Xml.Schema.XmlSchemaAny any = new System.Xml.Schema.XmlSchemaAny();
any.Namespace = ds.Namespace;
sequence.Items.Add(any);
type.Particle = sequence;
return type;
}
public delegate void CompetitionRowChangeEventHandler(object sender, CompetitionRowChangeEvent e);
public delegate void TeamsRowChangeEventHandler(object sender, TeamsRowChangeEvent e);
public delegate void LocationsRowChangeEventHandler(object sender, LocationsRowChangeEvent e);
public delegate void ScheduleRowChangeEventHandler(object sender, ScheduleRowChangeEvent e);
public delegate void CompetitionTypeRowChangeEventHandler(object sender, CompetitionTypeRowChangeEvent e);
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[System.Serializable()]
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class CompetitionDataTable : System.Data.DataTable, System.Collections.IEnumerable {
private System.Data.DataColumn columnCompetitionName;
private System.Data.DataColumn columnStartDate;
private System.Data.DataColumn columnGameLength;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CompetitionDataTable() {
this.TableName = "Competition";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal CompetitionDataTable(System.Data.DataTable table) {
this.TableName = table.TableName;
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected CompetitionDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn CompetitionNameColumn {
get {
return this.columnCompetitionName;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn StartDateColumn {
get {
return this.columnStartDate;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn GameLengthColumn {
get {
return this.columnGameLength;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CompetitionRow this[int index] {
get {
return ((CompetitionRow)(this.Rows[index]));
}
}
public event CompetitionRowChangeEventHandler CompetitionRowChanging;
public event CompetitionRowChangeEventHandler CompetitionRowChanged;
public event CompetitionRowChangeEventHandler CompetitionRowDeleting;
public event CompetitionRowChangeEventHandler CompetitionRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void AddCompetitionRow(CompetitionRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CompetitionRow AddCompetitionRow(string CompetitionName, System.DateTime StartDate, string GameLength) {
CompetitionRow rowCompetitionRow = ((CompetitionRow)(this.NewRow()));
rowCompetitionRow.ItemArray = new object[] {
CompetitionName,
StartDate,
GameLength};
this.Rows.Add(rowCompetitionRow);
return rowCompetitionRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
CompetitionDataTable cln = ((CompetitionDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new CompetitionDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columnCompetitionName = base.Columns["CompetitionName"];
this.columnStartDate = base.Columns["StartDate"];
this.columnGameLength = base.Columns["GameLength"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnCompetitionName = new System.Data.DataColumn("CompetitionName", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnCompetitionName);
this.columnStartDate = new System.Data.DataColumn("StartDate", typeof(System.DateTime), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnStartDate);
this.columnGameLength = new System.Data.DataColumn("GameLength", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnGameLength);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CompetitionRow NewCompetitionRow() {
return ((CompetitionRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new CompetitionRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(CompetitionRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.CompetitionRowChanged != null)) {
this.CompetitionRowChanged(this, new CompetitionRowChangeEvent(((CompetitionRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.CompetitionRowChanging != null)) {
this.CompetitionRowChanging(this, new CompetitionRowChangeEvent(((CompetitionRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.CompetitionRowDeleted != null)) {
this.CompetitionRowDeleted(this, new CompetitionRowChangeEvent(((CompetitionRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.CompetitionRowDeleting != null)) {
this.CompetitionRowDeleting(this, new CompetitionRowChangeEvent(((CompetitionRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void RemoveCompetitionRow(CompetitionRow row) {
this.Rows.Remove(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) {
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
DataSet ds = new DataSet();
xs.Add(ds.GetSchemaSerializable());
System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny();
any1.Namespace = "http://www.w3.org/2001/XMLSchema";
any1.MinOccurs = new decimal(0);
any1.MaxOccurs = decimal.MaxValue;
any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any1);
System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny();
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
any2.MinOccurs = new decimal(1);
any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any2);
System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "CompetitionDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[System.Serializable()]
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class TeamsDataTable : System.Data.DataTable, System.Collections.IEnumerable {
private System.Data.DataColumn columnTeamName;
private System.Data.DataColumn columnContactName;
private System.Data.DataColumn columnContactPhone;
private System.Data.DataColumn columnContactEmail;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public TeamsDataTable() {
this.TableName = "Teams";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal TeamsDataTable(System.Data.DataTable table) {
this.TableName = table.TableName;
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected TeamsDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn TeamNameColumn {
get {
return this.columnTeamName;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn ContactNameColumn {
get {
return this.columnContactName;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn ContactPhoneColumn {
get {
return this.columnContactPhone;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn ContactEmailColumn {
get {
return this.columnContactEmail;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public TeamsRow this[int index] {
get {
return ((TeamsRow)(this.Rows[index]));
}
}
public event TeamsRowChangeEventHandler TeamsRowChanging;
public event TeamsRowChangeEventHandler TeamsRowChanged;
public event TeamsRowChangeEventHandler TeamsRowDeleting;
public event TeamsRowChangeEventHandler TeamsRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void AddTeamsRow(TeamsRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public TeamsRow AddTeamsRow(string TeamName, string ContactName, string ContactPhone, string ContactEmail) {
TeamsRow rowTeamsRow = ((TeamsRow)(this.NewRow()));
rowTeamsRow.ItemArray = new object[] {
TeamName,
ContactName,
ContactPhone,
ContactEmail};
this.Rows.Add(rowTeamsRow);
return rowTeamsRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public TeamsRow FindByTeamName(string TeamName) {
return ((TeamsRow)(this.Rows.Find(new object[] {
TeamName})));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
TeamsDataTable cln = ((TeamsDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new TeamsDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columnTeamName = base.Columns["TeamName"];
this.columnContactName = base.Columns["ContactName"];
this.columnContactPhone = base.Columns["ContactPhone"];
this.columnContactEmail = base.Columns["ContactEmail"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnTeamName = new System.Data.DataColumn("TeamName", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnTeamName);
this.columnContactName = new System.Data.DataColumn("ContactName", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnContactName);
this.columnContactPhone = new System.Data.DataColumn("ContactPhone", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnContactPhone);
this.columnContactEmail = new System.Data.DataColumn("ContactEmail", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnContactEmail);
this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
this.columnTeamName}, true));
this.columnTeamName.AllowDBNull = false;
this.columnTeamName.Unique = true;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public TeamsRow NewTeamsRow() {
return ((TeamsRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new TeamsRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(TeamsRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.TeamsRowChanged != null)) {
this.TeamsRowChanged(this, new TeamsRowChangeEvent(((TeamsRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.TeamsRowChanging != null)) {
this.TeamsRowChanging(this, new TeamsRowChangeEvent(((TeamsRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.TeamsRowDeleted != null)) {
this.TeamsRowDeleted(this, new TeamsRowChangeEvent(((TeamsRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.TeamsRowDeleting != null)) {
this.TeamsRowDeleting(this, new TeamsRowChangeEvent(((TeamsRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void RemoveTeamsRow(TeamsRow row) {
this.Rows.Remove(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) {
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
DataSet ds = new DataSet();
xs.Add(ds.GetSchemaSerializable());
System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny();
any1.Namespace = "http://www.w3.org/2001/XMLSchema";
any1.MinOccurs = new decimal(0);
any1.MaxOccurs = decimal.MaxValue;
any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any1);
System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny();
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
any2.MinOccurs = new decimal(1);
any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any2);
System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "TeamsDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[System.Serializable()]
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class LocationsDataTable : System.Data.DataTable, System.Collections.IEnumerable {
private System.Data.DataColumn columnTime;
private System.Data.DataColumn columnLocationName;
private System.Data.DataColumn columnDate;
private System.Data.DataColumn columnGameStartDateTime;
private System.Data.DataColumn columnDuration;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public LocationsDataTable() {
this.TableName = "Locations";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal LocationsDataTable(System.Data.DataTable table) {
this.TableName = table.TableName;
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected LocationsDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn TimeColumn {
get {
return this.columnTime;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn LocationNameColumn {
get {
return this.columnLocationName;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn DateColumn {
get {
return this.columnDate;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn GameStartDateTimeColumn {
get {
return this.columnGameStartDateTime;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn DurationColumn {
get {
return this.columnDuration;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public LocationsRow this[int index] {
get {
return ((LocationsRow)(this.Rows[index]));
}
}
public event LocationsRowChangeEventHandler LocationsRowChanging;
public event LocationsRowChangeEventHandler LocationsRowChanged;
public event LocationsRowChangeEventHandler LocationsRowDeleting;
public event LocationsRowChangeEventHandler LocationsRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void AddLocationsRow(LocationsRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public LocationsRow AddLocationsRow(System.DateTime Time, string LocationName, System.DateTime Date, System.DateTime GameStartDateTime, string Duration) {
LocationsRow rowLocationsRow = ((LocationsRow)(this.NewRow()));
rowLocationsRow.ItemArray = new object[] {
Time,
LocationName,
Date,
GameStartDateTime,
Duration};
this.Rows.Add(rowLocationsRow);
return rowLocationsRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
LocationsDataTable cln = ((LocationsDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new LocationsDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columnTime = base.Columns["Time"];
this.columnLocationName = base.Columns["LocationName"];
this.columnDate = base.Columns["Date"];
this.columnGameStartDateTime = base.Columns["GameStartDateTime"];
this.columnDuration = base.Columns["Duration"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnTime = new System.Data.DataColumn("Time", typeof(System.DateTime), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnTime);
this.columnLocationName = new System.Data.DataColumn("LocationName", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnLocationName);
this.columnDate = new System.Data.DataColumn("Date", typeof(System.DateTime), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnDate);
this.columnGameStartDateTime = new System.Data.DataColumn("GameStartDateTime", typeof(System.DateTime), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnGameStartDateTime);
this.columnDuration = new System.Data.DataColumn("Duration", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnDuration);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public LocationsRow NewLocationsRow() {
return ((LocationsRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new LocationsRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(LocationsRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.LocationsRowChanged != null)) {
this.LocationsRowChanged(this, new LocationsRowChangeEvent(((LocationsRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.LocationsRowChanging != null)) {
this.LocationsRowChanging(this, new LocationsRowChangeEvent(((LocationsRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.LocationsRowDeleted != null)) {
this.LocationsRowDeleted(this, new LocationsRowChangeEvent(((LocationsRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.LocationsRowDeleting != null)) {
this.LocationsRowDeleting(this, new LocationsRowChangeEvent(((LocationsRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void RemoveLocationsRow(LocationsRow row) {
this.Rows.Remove(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) {
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
DataSet ds = new DataSet();
xs.Add(ds.GetSchemaSerializable());
System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny();
any1.Namespace = "http://www.w3.org/2001/XMLSchema";
any1.MinOccurs = new decimal(0);
any1.MaxOccurs = decimal.MaxValue;
any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any1);
System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny();
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
any2.MinOccurs = new decimal(1);
any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any2);
System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "LocationsDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[System.Serializable()]
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class ScheduleDataTable : System.Data.DataTable, System.Collections.IEnumerable {
private System.Data.DataColumn columnDate;
private System.Data.DataColumn columnTime;
private System.Data.DataColumn columnLocation;
private System.Data.DataColumn columnHomeTeam;
private System.Data.DataColumn columnAwayTeam;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ScheduleDataTable() {
this.TableName = "Schedule";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal ScheduleDataTable(System.Data.DataTable table) {
this.TableName = table.TableName;
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected ScheduleDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn DateColumn {
get {
return this.columnDate;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn TimeColumn {
get {
return this.columnTime;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn LocationColumn {
get {
return this.columnLocation;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn HomeTeamColumn {
get {
return this.columnHomeTeam;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn AwayTeamColumn {
get {
return this.columnAwayTeam;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ScheduleRow this[int index] {
get {
return ((ScheduleRow)(this.Rows[index]));
}
}
public event ScheduleRowChangeEventHandler ScheduleRowChanging;
public event ScheduleRowChangeEventHandler ScheduleRowChanged;
public event ScheduleRowChangeEventHandler ScheduleRowDeleting;
public event ScheduleRowChangeEventHandler ScheduleRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void AddScheduleRow(ScheduleRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ScheduleRow AddScheduleRow(string Date, string Time, string Location, string HomeTeam, string AwayTeam) {
ScheduleRow rowScheduleRow = ((ScheduleRow)(this.NewRow()));
rowScheduleRow.ItemArray = new object[] {
Date,
Time,
Location,
HomeTeam,
AwayTeam};
this.Rows.Add(rowScheduleRow);
return rowScheduleRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
ScheduleDataTable cln = ((ScheduleDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new ScheduleDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columnDate = base.Columns["Date"];
this.columnTime = base.Columns["Time"];
this.columnLocation = base.Columns["Location"];
this.columnHomeTeam = base.Columns["HomeTeam"];
this.columnAwayTeam = base.Columns["AwayTeam"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnDate = new System.Data.DataColumn("Date", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnDate);
this.columnTime = new System.Data.DataColumn("Time", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnTime);
this.columnLocation = new System.Data.DataColumn("Location", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnLocation);
this.columnHomeTeam = new System.Data.DataColumn("HomeTeam", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnHomeTeam);
this.columnAwayTeam = new System.Data.DataColumn("AwayTeam", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnAwayTeam);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ScheduleRow NewScheduleRow() {
return ((ScheduleRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new ScheduleRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(ScheduleRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.ScheduleRowChanged != null)) {
this.ScheduleRowChanged(this, new ScheduleRowChangeEvent(((ScheduleRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.ScheduleRowChanging != null)) {
this.ScheduleRowChanging(this, new ScheduleRowChangeEvent(((ScheduleRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.ScheduleRowDeleted != null)) {
this.ScheduleRowDeleted(this, new ScheduleRowChangeEvent(((ScheduleRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.ScheduleRowDeleting != null)) {
this.ScheduleRowDeleting(this, new ScheduleRowChangeEvent(((ScheduleRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void RemoveScheduleRow(ScheduleRow row) {
this.Rows.Remove(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) {
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
DataSet ds = new DataSet();
xs.Add(ds.GetSchemaSerializable());
System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny();
any1.Namespace = "http://www.w3.org/2001/XMLSchema";
any1.MinOccurs = new decimal(0);
any1.MaxOccurs = decimal.MaxValue;
any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any1);
System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny();
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
any2.MinOccurs = new decimal(1);
any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any2);
System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "ScheduleDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
[System.Serializable()]
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
public partial class CompetitionTypeDataTable : System.Data.DataTable, System.Collections.IEnumerable {
private System.Data.DataColumn columnType;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CompetitionTypeDataTable() {
this.TableName = "CompetitionType";
this.BeginInit();
this.InitClass();
this.EndInit();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal CompetitionTypeDataTable(System.Data.DataTable table) {
this.TableName = table.TableName;
if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
this.CaseSensitive = table.CaseSensitive;
}
if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
this.Locale = table.Locale;
}
if ((table.Namespace != table.DataSet.Namespace)) {
this.Namespace = table.Namespace;
}
this.Prefix = table.Prefix;
this.MinimumCapacity = table.MinimumCapacity;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected CompetitionTypeDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
base(info, context) {
this.InitVars();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataColumn TypeColumn {
get {
return this.columnType;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
[System.ComponentModel.Browsable(false)]
public int Count {
get {
return this.Rows.Count;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CompetitionTypeRow this[int index] {
get {
return ((CompetitionTypeRow)(this.Rows[index]));
}
}
public event CompetitionTypeRowChangeEventHandler CompetitionTypeRowChanging;
public event CompetitionTypeRowChangeEventHandler CompetitionTypeRowChanged;
public event CompetitionTypeRowChangeEventHandler CompetitionTypeRowDeleting;
public event CompetitionTypeRowChangeEventHandler CompetitionTypeRowDeleted;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void AddCompetitionTypeRow(CompetitionTypeRow row) {
this.Rows.Add(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CompetitionTypeRow AddCompetitionTypeRow(string Type) {
CompetitionTypeRow rowCompetitionTypeRow = ((CompetitionTypeRow)(this.NewRow()));
rowCompetitionTypeRow.ItemArray = new object[] {
Type};
this.Rows.Add(rowCompetitionTypeRow);
return rowCompetitionTypeRow;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public virtual System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public override System.Data.DataTable Clone() {
CompetitionTypeDataTable cln = ((CompetitionTypeDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataTable CreateInstance() {
return new CompetitionTypeDataTable();
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal void InitVars() {
this.columnType = base.Columns["Type"];
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
private void InitClass() {
this.columnType = new System.Data.DataColumn("Type", typeof(string), null, System.Data.MappingType.Element);
base.Columns.Add(this.columnType);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CompetitionTypeRow NewCompetitionTypeRow() {
return ((CompetitionTypeRow)(this.NewRow()));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
return new CompetitionTypeRow(builder);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override System.Type GetRowType() {
return typeof(CompetitionTypeRow);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this.CompetitionTypeRowChanged != null)) {
this.CompetitionTypeRowChanged(this, new CompetitionTypeRowChangeEvent(((CompetitionTypeRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this.CompetitionTypeRowChanging != null)) {
this.CompetitionTypeRowChanging(this, new CompetitionTypeRowChangeEvent(((CompetitionTypeRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this.CompetitionTypeRowDeleted != null)) {
this.CompetitionTypeRowDeleted(this, new CompetitionTypeRowChangeEvent(((CompetitionTypeRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this.CompetitionTypeRowDeleting != null)) {
this.CompetitionTypeRowDeleting(this, new CompetitionTypeRowChangeEvent(((CompetitionTypeRow)(e.Row)), e.Action));
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void RemoveCompetitionTypeRow(CompetitionTypeRow row) {
this.Rows.Remove(row);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public static System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(System.Xml.Schema.XmlSchemaSet xs) {
System.Xml.Schema.XmlSchemaComplexType type = new System.Xml.Schema.XmlSchemaComplexType();
System.Xml.Schema.XmlSchemaSequence sequence = new System.Xml.Schema.XmlSchemaSequence();
DataSet ds = new DataSet();
xs.Add(ds.GetSchemaSerializable());
System.Xml.Schema.XmlSchemaAny any1 = new System.Xml.Schema.XmlSchemaAny();
any1.Namespace = "http://www.w3.org/2001/XMLSchema";
any1.MinOccurs = new decimal(0);
any1.MaxOccurs = decimal.MaxValue;
any1.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any1);
System.Xml.Schema.XmlSchemaAny any2 = new System.Xml.Schema.XmlSchemaAny();
any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
any2.MinOccurs = new decimal(1);
any2.ProcessContents = System.Xml.Schema.XmlSchemaContentProcessing.Lax;
sequence.Items.Add(any2);
System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "CompetitionTypeDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public partial class CompetitionRow : System.Data.DataRow {
private CompetitionDataTable tableCompetition;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal CompetitionRow(System.Data.DataRowBuilder rb) :
base(rb) {
this.tableCompetition = ((CompetitionDataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string CompetitionName {
get {
try {
return ((string)(this[this.tableCompetition.CompetitionNameColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'CompetitionName\' in table \'Competition\' is DBNull.", e);
}
}
set {
this[this.tableCompetition.CompetitionNameColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.DateTime StartDate {
get {
try {
return ((System.DateTime)(this[this.tableCompetition.StartDateColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'StartDate\' in table \'Competition\' is DBNull.", e);
}
}
set {
this[this.tableCompetition.StartDateColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string GameLength {
get {
try {
return ((string)(this[this.tableCompetition.GameLengthColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'GameLength\' in table \'Competition\' is DBNull.", e);
}
}
set {
this[this.tableCompetition.GameLengthColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsCompetitionNameNull() {
return this.IsNull(this.tableCompetition.CompetitionNameColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetCompetitionNameNull() {
this[this.tableCompetition.CompetitionNameColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsStartDateNull() {
return this.IsNull(this.tableCompetition.StartDateColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetStartDateNull() {
this[this.tableCompetition.StartDateColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsGameLengthNull() {
return this.IsNull(this.tableCompetition.GameLengthColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetGameLengthNull() {
this[this.tableCompetition.GameLengthColumn] = System.Convert.DBNull;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public partial class TeamsRow : System.Data.DataRow {
private TeamsDataTable tableTeams;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal TeamsRow(System.Data.DataRowBuilder rb) :
base(rb) {
this.tableTeams = ((TeamsDataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string TeamName {
get {
return ((string)(this[this.tableTeams.TeamNameColumn]));
}
set {
this[this.tableTeams.TeamNameColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string ContactName {
get {
try {
return ((string)(this[this.tableTeams.ContactNameColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'ContactName\' in table \'Teams\' is DBNull.", e);
}
}
set {
this[this.tableTeams.ContactNameColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string ContactPhone {
get {
try {
return ((string)(this[this.tableTeams.ContactPhoneColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'ContactPhone\' in table \'Teams\' is DBNull.", e);
}
}
set {
this[this.tableTeams.ContactPhoneColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string ContactEmail {
get {
try {
return ((string)(this[this.tableTeams.ContactEmailColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'ContactEmail\' in table \'Teams\' is DBNull.", e);
}
}
set {
this[this.tableTeams.ContactEmailColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsContactNameNull() {
return this.IsNull(this.tableTeams.ContactNameColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetContactNameNull() {
this[this.tableTeams.ContactNameColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsContactPhoneNull() {
return this.IsNull(this.tableTeams.ContactPhoneColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetContactPhoneNull() {
this[this.tableTeams.ContactPhoneColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsContactEmailNull() {
return this.IsNull(this.tableTeams.ContactEmailColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetContactEmailNull() {
this[this.tableTeams.ContactEmailColumn] = System.Convert.DBNull;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public partial class LocationsRow : System.Data.DataRow {
private LocationsDataTable tableLocations;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal LocationsRow(System.Data.DataRowBuilder rb) :
base(rb) {
this.tableLocations = ((LocationsDataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.DateTime Time {
get {
try {
return ((System.DateTime)(this[this.tableLocations.TimeColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Time\' in table \'Locations\' is DBNull.", e);
}
}
set {
this[this.tableLocations.TimeColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string LocationName {
get {
try {
return ((string)(this[this.tableLocations.LocationNameColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'LocationName\' in table \'Locations\' is DBNull.", e);
}
}
set {
this[this.tableLocations.LocationNameColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.DateTime Date {
get {
try {
return ((System.DateTime)(this[this.tableLocations.DateColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Date\' in table \'Locations\' is DBNull.", e);
}
}
set {
this[this.tableLocations.DateColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.DateTime GameStartDateTime {
get {
try {
return ((System.DateTime)(this[this.tableLocations.GameStartDateTimeColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'GameStartDateTime\' in table \'Locations\' is DBNull.", e);
}
}
set {
this[this.tableLocations.GameStartDateTimeColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Duration {
get {
try {
return ((string)(this[this.tableLocations.DurationColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Duration\' in table \'Locations\' is DBNull.", e);
}
}
set {
this[this.tableLocations.DurationColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsTimeNull() {
return this.IsNull(this.tableLocations.TimeColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetTimeNull() {
this[this.tableLocations.TimeColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsLocationNameNull() {
return this.IsNull(this.tableLocations.LocationNameColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetLocationNameNull() {
this[this.tableLocations.LocationNameColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsDateNull() {
return this.IsNull(this.tableLocations.DateColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetDateNull() {
this[this.tableLocations.DateColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsGameStartDateTimeNull() {
return this.IsNull(this.tableLocations.GameStartDateTimeColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetGameStartDateTimeNull() {
this[this.tableLocations.GameStartDateTimeColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsDurationNull() {
return this.IsNull(this.tableLocations.DurationColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetDurationNull() {
this[this.tableLocations.DurationColumn] = System.Convert.DBNull;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public partial class ScheduleRow : System.Data.DataRow {
private ScheduleDataTable tableSchedule;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal ScheduleRow(System.Data.DataRowBuilder rb) :
base(rb) {
this.tableSchedule = ((ScheduleDataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Date {
get {
try {
return ((string)(this[this.tableSchedule.DateColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Date\' in table \'Schedule\' is DBNull.", e);
}
}
set {
this[this.tableSchedule.DateColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Time {
get {
try {
return ((string)(this[this.tableSchedule.TimeColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Time\' in table \'Schedule\' is DBNull.", e);
}
}
set {
this[this.tableSchedule.TimeColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Location {
get {
try {
return ((string)(this[this.tableSchedule.LocationColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Location\' in table \'Schedule\' is DBNull.", e);
}
}
set {
this[this.tableSchedule.LocationColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string HomeTeam {
get {
try {
return ((string)(this[this.tableSchedule.HomeTeamColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'HomeTeam\' in table \'Schedule\' is DBNull.", e);
}
}
set {
this[this.tableSchedule.HomeTeamColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string AwayTeam {
get {
try {
return ((string)(this[this.tableSchedule.AwayTeamColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'AwayTeam\' in table \'Schedule\' is DBNull.", e);
}
}
set {
this[this.tableSchedule.AwayTeamColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsDateNull() {
return this.IsNull(this.tableSchedule.DateColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetDateNull() {
this[this.tableSchedule.DateColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsTimeNull() {
return this.IsNull(this.tableSchedule.TimeColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetTimeNull() {
this[this.tableSchedule.TimeColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsLocationNull() {
return this.IsNull(this.tableSchedule.LocationColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetLocationNull() {
this[this.tableSchedule.LocationColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsHomeTeamNull() {
return this.IsNull(this.tableSchedule.HomeTeamColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetHomeTeamNull() {
this[this.tableSchedule.HomeTeamColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsAwayTeamNull() {
return this.IsNull(this.tableSchedule.AwayTeamColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetAwayTeamNull() {
this[this.tableSchedule.AwayTeamColumn] = System.Convert.DBNull;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public partial class CompetitionTypeRow : System.Data.DataRow {
private CompetitionTypeDataTable tableCompetitionType;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal CompetitionTypeRow(System.Data.DataRowBuilder rb) :
base(rb) {
this.tableCompetitionType = ((CompetitionTypeDataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Type {
get {
try {
return ((string)(this[this.tableCompetitionType.TypeColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Type\' in table \'CompetitionType\' is DBNull.", e);
}
}
set {
this[this.tableCompetitionType.TypeColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsTypeNull() {
return this.IsNull(this.tableCompetitionType.TypeColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetTypeNull() {
this[this.tableCompetitionType.TypeColumn] = System.Convert.DBNull;
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public class CompetitionRowChangeEvent : System.EventArgs {
private CompetitionRow eventRow;
private System.Data.DataRowAction eventAction;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CompetitionRowChangeEvent(CompetitionRow row, System.Data.DataRowAction action) {
this.eventRow = row;
this.eventAction = action;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CompetitionRow Row {
get {
return this.eventRow;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataRowAction Action {
get {
return this.eventAction;
}
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public class TeamsRowChangeEvent : System.EventArgs {
private TeamsRow eventRow;
private System.Data.DataRowAction eventAction;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public TeamsRowChangeEvent(TeamsRow row, System.Data.DataRowAction action) {
this.eventRow = row;
this.eventAction = action;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public TeamsRow Row {
get {
return this.eventRow;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataRowAction Action {
get {
return this.eventAction;
}
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public class LocationsRowChangeEvent : System.EventArgs {
private LocationsRow eventRow;
private System.Data.DataRowAction eventAction;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public LocationsRowChangeEvent(LocationsRow row, System.Data.DataRowAction action) {
this.eventRow = row;
this.eventAction = action;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public LocationsRow Row {
get {
return this.eventRow;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataRowAction Action {
get {
return this.eventAction;
}
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public class ScheduleRowChangeEvent : System.EventArgs {
private ScheduleRow eventRow;
private System.Data.DataRowAction eventAction;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ScheduleRowChangeEvent(ScheduleRow row, System.Data.DataRowAction action) {
this.eventRow = row;
this.eventAction = action;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public ScheduleRow Row {
get {
return this.eventRow;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataRowAction Action {
get {
return this.eventAction;
}
}
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
public class CompetitionTypeRowChangeEvent : System.EventArgs {
private CompetitionTypeRow eventRow;
private System.Data.DataRowAction eventAction;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CompetitionTypeRowChangeEvent(CompetitionTypeRow row, System.Data.DataRowAction action) {
this.eventRow = row;
this.eventAction = action;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CompetitionTypeRow Row {
get {
return this.eventRow;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataRowAction Action {
get {
return this.eventAction;
}
}
}
}
}
#pragma warning restore 1591