Changes to make it .NET 2.0 compatible
This commit is contained in:
parent
6b91f5be22
commit
04ca3e400c
10 changed files with 48 additions and 29 deletions
|
@ -299,7 +299,7 @@ namespace DeviceSchedulerAgent {
|
|||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
|
||||
[global::System.Serializable()]
|
||||
[global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
|
||||
public partial class JobDataTable : global::System.Data.TypedTableBase<JobRow> {
|
||||
public partial class JobDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
|
||||
|
||||
private global::System.Data.DataColumn columnID;
|
||||
|
||||
|
@ -424,6 +424,11 @@ namespace DeviceSchedulerAgent {
|
|||
ID})));
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public virtual global::System.Collections.IEnumerator GetEnumerator() {
|
||||
return this.Rows.GetEnumerator();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public override global::System.Data.DataTable Clone() {
|
||||
JobDataTable cln = ((JobDataTable)(base.Clone()));
|
||||
|
@ -586,7 +591,7 @@ namespace DeviceSchedulerAgent {
|
|||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
|
||||
[global::System.Serializable()]
|
||||
[global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
|
||||
public partial class JobActionsDataTable : global::System.Data.TypedTableBase<JobActionsRow> {
|
||||
public partial class JobActionsDataTable : global::System.Data.DataTable, global::System.Collections.IEnumerable {
|
||||
|
||||
private global::System.Data.DataColumn columnID;
|
||||
|
||||
|
@ -704,6 +709,11 @@ namespace DeviceSchedulerAgent {
|
|||
ID})));
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public virtual global::System.Collections.IEnumerator GetEnumerator() {
|
||||
return this.Rows.GetEnumerator();
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
public override global::System.Data.DataTable Clone() {
|
||||
JobActionsDataTable cln = ((JobActionsDataTable)(base.Clone()));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue