628 lines
28 KiB
C#
628 lines
28 KiB
C#
//------------------------------------------------------------------------------
|
|
// <auto-generated>
|
|
// This code was generated by a tool.
|
|
// Runtime Version:2.0.50727.42
|
|
//
|
|
// Changes to this file may cause incorrect behavior and will be lost if
|
|
// the code is regenerated.
|
|
// </auto-generated>
|
|
//------------------------------------------------------------------------------
|
|
|
|
#pragma warning disable 1591
|
|
|
|
namespace HRM.BO
|
|
{
|
|
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("OrgData")]
|
|
[System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")]
|
|
public partial class OrgData : System.Data.DataSet {
|
|
|
|
private OrgDetailsDataTable tableOrgDetails;
|
|
|
|
private System.Data.SchemaSerializationMode _schemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public OrgData() {
|
|
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 OrgData(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["OrgDetails"] != null)) {
|
|
base.Tables.Add(new OrgDetailsDataTable(ds.Tables["OrgDetails"]));
|
|
}
|
|
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 OrgDetailsDataTable OrgDetails {
|
|
get {
|
|
return this.tableOrgDetails;
|
|
}
|
|
}
|
|
|
|
[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() {
|
|
OrgData cln = ((OrgData)(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["OrgDetails"] != null)) {
|
|
base.Tables.Add(new OrgDetailsDataTable(ds.Tables["OrgDetails"]));
|
|
}
|
|
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.tableOrgDetails = ((OrgDetailsDataTable)(base.Tables["OrgDetails"]));
|
|
if ((initTable == true)) {
|
|
if ((this.tableOrgDetails != null)) {
|
|
this.tableOrgDetails.InitVars();
|
|
}
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
private void InitClass() {
|
|
this.DataSetName = "OrgData";
|
|
this.Prefix = "";
|
|
this.Namespace = "http://tempuri.org/OrgData.xsd";
|
|
this.EnforceConstraints = true;
|
|
this.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
|
|
this.tableOrgDetails = new OrgDetailsDataTable();
|
|
base.Tables.Add(this.tableOrgDetails);
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
private bool ShouldSerializeOrgDetails() {
|
|
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) {
|
|
OrgData ds = new OrgData();
|
|
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 OrgDetailsRowChangeEventHandler(object sender, OrgDetailsRowChangeEvent e);
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
|
|
[System.Serializable()]
|
|
[System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
|
|
public partial class OrgDetailsDataTable : System.Data.DataTable, System.Collections.IEnumerable {
|
|
|
|
private System.Data.DataColumn columnEmployeeID;
|
|
|
|
private System.Data.DataColumn columnEmployeeName;
|
|
|
|
private System.Data.DataColumn columnBossEmployeeID;
|
|
|
|
private System.Data.DataColumn columnEmployeeTitle;
|
|
|
|
private System.Data.DataColumn columnNodeID;
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public OrgDetailsDataTable() {
|
|
this.TableName = "OrgDetails";
|
|
this.BeginInit();
|
|
this.InitClass();
|
|
this.EndInit();
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
internal OrgDetailsDataTable(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 OrgDetailsDataTable(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context) :
|
|
base(info, context) {
|
|
this.InitVars();
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public System.Data.DataColumn EmployeeIDColumn {
|
|
get {
|
|
return this.columnEmployeeID;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public System.Data.DataColumn EmployeeNameColumn {
|
|
get {
|
|
return this.columnEmployeeName;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public System.Data.DataColumn BossEmployeeIDColumn {
|
|
get {
|
|
return this.columnBossEmployeeID;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public System.Data.DataColumn EmployeeTitleColumn {
|
|
get {
|
|
return this.columnEmployeeTitle;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public System.Data.DataColumn NodeIDColumn {
|
|
get {
|
|
return this.columnNodeID;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
[System.ComponentModel.Browsable(false)]
|
|
public int Count {
|
|
get {
|
|
return this.Rows.Count;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public OrgDetailsRow this[int index] {
|
|
get {
|
|
return ((OrgDetailsRow)(this.Rows[index]));
|
|
}
|
|
}
|
|
|
|
public event OrgDetailsRowChangeEventHandler OrgDetailsRowChanging;
|
|
|
|
public event OrgDetailsRowChangeEventHandler OrgDetailsRowChanged;
|
|
|
|
public event OrgDetailsRowChangeEventHandler OrgDetailsRowDeleting;
|
|
|
|
public event OrgDetailsRowChangeEventHandler OrgDetailsRowDeleted;
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public void AddOrgDetailsRow(OrgDetailsRow row) {
|
|
this.Rows.Add(row);
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public OrgDetailsRow AddOrgDetailsRow(string EmployeeID, string EmployeeName, string BossEmployeeID, string EmployeeTitle, string NodeID) {
|
|
OrgDetailsRow rowOrgDetailsRow = ((OrgDetailsRow)(this.NewRow()));
|
|
rowOrgDetailsRow.ItemArray = new object[] {
|
|
EmployeeID,
|
|
EmployeeName,
|
|
BossEmployeeID,
|
|
EmployeeTitle,
|
|
NodeID};
|
|
this.Rows.Add(rowOrgDetailsRow);
|
|
return rowOrgDetailsRow;
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public OrgDetailsRow FindByEmployeeID(string EmployeeID) {
|
|
return ((OrgDetailsRow)(this.Rows.Find(new object[] {
|
|
EmployeeID})));
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public virtual System.Collections.IEnumerator GetEnumerator() {
|
|
return this.Rows.GetEnumerator();
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public override System.Data.DataTable Clone() {
|
|
OrgDetailsDataTable cln = ((OrgDetailsDataTable)(base.Clone()));
|
|
cln.InitVars();
|
|
return cln;
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
protected override System.Data.DataTable CreateInstance() {
|
|
return new OrgDetailsDataTable();
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
internal void InitVars() {
|
|
this.columnEmployeeID = base.Columns["EmployeeID"];
|
|
this.columnEmployeeName = base.Columns["EmployeeName"];
|
|
this.columnBossEmployeeID = base.Columns["BossEmployeeID"];
|
|
this.columnEmployeeTitle = base.Columns["EmployeeTitle"];
|
|
this.columnNodeID = base.Columns["NodeID"];
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
private void InitClass() {
|
|
this.columnEmployeeID = new System.Data.DataColumn("EmployeeID", typeof(string), null, System.Data.MappingType.Element);
|
|
base.Columns.Add(this.columnEmployeeID);
|
|
this.columnEmployeeName = new System.Data.DataColumn("EmployeeName", typeof(string), null, System.Data.MappingType.Element);
|
|
base.Columns.Add(this.columnEmployeeName);
|
|
this.columnBossEmployeeID = new System.Data.DataColumn("BossEmployeeID", typeof(string), null, System.Data.MappingType.Element);
|
|
base.Columns.Add(this.columnBossEmployeeID);
|
|
this.columnEmployeeTitle = new System.Data.DataColumn("EmployeeTitle", typeof(string), null, System.Data.MappingType.Element);
|
|
base.Columns.Add(this.columnEmployeeTitle);
|
|
this.columnNodeID = new System.Data.DataColumn("NodeID", typeof(string), null, System.Data.MappingType.Element);
|
|
base.Columns.Add(this.columnNodeID);
|
|
this.Constraints.Add(new System.Data.UniqueConstraint("Constraint1", new System.Data.DataColumn[] {
|
|
this.columnEmployeeID}, true));
|
|
this.columnEmployeeID.AllowDBNull = false;
|
|
this.columnEmployeeID.Unique = true;
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public OrgDetailsRow NewOrgDetailsRow() {
|
|
return ((OrgDetailsRow)(this.NewRow()));
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
protected override System.Data.DataRow NewRowFromBuilder(System.Data.DataRowBuilder builder) {
|
|
return new OrgDetailsRow(builder);
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
protected override System.Type GetRowType() {
|
|
return typeof(OrgDetailsRow);
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
protected override void OnRowChanged(System.Data.DataRowChangeEventArgs e) {
|
|
base.OnRowChanged(e);
|
|
if ((this.OrgDetailsRowChanged != null)) {
|
|
this.OrgDetailsRowChanged(this, new OrgDetailsRowChangeEvent(((OrgDetailsRow)(e.Row)), e.Action));
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
protected override void OnRowChanging(System.Data.DataRowChangeEventArgs e) {
|
|
base.OnRowChanging(e);
|
|
if ((this.OrgDetailsRowChanging != null)) {
|
|
this.OrgDetailsRowChanging(this, new OrgDetailsRowChangeEvent(((OrgDetailsRow)(e.Row)), e.Action));
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
protected override void OnRowDeleted(System.Data.DataRowChangeEventArgs e) {
|
|
base.OnRowDeleted(e);
|
|
if ((this.OrgDetailsRowDeleted != null)) {
|
|
this.OrgDetailsRowDeleted(this, new OrgDetailsRowChangeEvent(((OrgDetailsRow)(e.Row)), e.Action));
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
protected override void OnRowDeleting(System.Data.DataRowChangeEventArgs e) {
|
|
base.OnRowDeleting(e);
|
|
if ((this.OrgDetailsRowDeleting != null)) {
|
|
this.OrgDetailsRowDeleting(this, new OrgDetailsRowChangeEvent(((OrgDetailsRow)(e.Row)), e.Action));
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public void RemoveOrgDetailsRow(OrgDetailsRow 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();
|
|
OrgData ds = new OrgData();
|
|
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 = "OrgDetailsDataTable";
|
|
type.Attributes.Add(attribute2);
|
|
type.Particle = sequence;
|
|
return type;
|
|
}
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
|
|
public partial class OrgDetailsRow : System.Data.DataRow {
|
|
|
|
private OrgDetailsDataTable tableOrgDetails;
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
internal OrgDetailsRow(System.Data.DataRowBuilder rb) :
|
|
base(rb) {
|
|
this.tableOrgDetails = ((OrgDetailsDataTable)(this.Table));
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public string EmployeeID {
|
|
get {
|
|
return ((string)(this[this.tableOrgDetails.EmployeeIDColumn]));
|
|
}
|
|
set {
|
|
this[this.tableOrgDetails.EmployeeIDColumn] = value;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public string EmployeeName {
|
|
get {
|
|
try {
|
|
return ((string)(this[this.tableOrgDetails.EmployeeNameColumn]));
|
|
}
|
|
catch (System.InvalidCastException e) {
|
|
throw new System.Data.StrongTypingException("The value for column \'EmployeeName\' in table \'OrgDetails\' is DBNull.", e);
|
|
}
|
|
}
|
|
set {
|
|
this[this.tableOrgDetails.EmployeeNameColumn] = value;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public string BossEmployeeID {
|
|
get {
|
|
try {
|
|
return ((string)(this[this.tableOrgDetails.BossEmployeeIDColumn]));
|
|
}
|
|
catch (System.InvalidCastException e) {
|
|
throw new System.Data.StrongTypingException("The value for column \'BossEmployeeID\' in table \'OrgDetails\' is DBNull.", e);
|
|
}
|
|
}
|
|
set {
|
|
this[this.tableOrgDetails.BossEmployeeIDColumn] = value;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public string EmployeeTitle {
|
|
get {
|
|
try {
|
|
return ((string)(this[this.tableOrgDetails.EmployeeTitleColumn]));
|
|
}
|
|
catch (System.InvalidCastException e) {
|
|
throw new System.Data.StrongTypingException("The value for column \'EmployeeTitle\' in table \'OrgDetails\' is DBNull.", e);
|
|
}
|
|
}
|
|
set {
|
|
this[this.tableOrgDetails.EmployeeTitleColumn] = value;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public string NodeID {
|
|
get {
|
|
try {
|
|
return ((string)(this[this.tableOrgDetails.NodeIDColumn]));
|
|
}
|
|
catch (System.InvalidCastException e) {
|
|
throw new System.Data.StrongTypingException("The value for column \'NodeID\' in table \'OrgDetails\' is DBNull.", e);
|
|
}
|
|
}
|
|
set {
|
|
this[this.tableOrgDetails.NodeIDColumn] = value;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public bool IsEmployeeNameNull() {
|
|
return this.IsNull(this.tableOrgDetails.EmployeeNameColumn);
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public void SetEmployeeNameNull() {
|
|
this[this.tableOrgDetails.EmployeeNameColumn] = System.Convert.DBNull;
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public bool IsBossEmployeeIDNull() {
|
|
return this.IsNull(this.tableOrgDetails.BossEmployeeIDColumn);
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public void SetBossEmployeeIDNull() {
|
|
this[this.tableOrgDetails.BossEmployeeIDColumn] = System.Convert.DBNull;
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public bool IsEmployeeTitleNull() {
|
|
return this.IsNull(this.tableOrgDetails.EmployeeTitleColumn);
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public void SetEmployeeTitleNull() {
|
|
this[this.tableOrgDetails.EmployeeTitleColumn] = System.Convert.DBNull;
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public bool IsNodeIDNull() {
|
|
return this.IsNull(this.tableOrgDetails.NodeIDColumn);
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public void SetNodeIDNull() {
|
|
this[this.tableOrgDetails.NodeIDColumn] = System.Convert.DBNull;
|
|
}
|
|
}
|
|
|
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "2.0.0.0")]
|
|
public class OrgDetailsRowChangeEvent : System.EventArgs {
|
|
|
|
private OrgDetailsRow eventRow;
|
|
|
|
private System.Data.DataRowAction eventAction;
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public OrgDetailsRowChangeEvent(OrgDetailsRow row, System.Data.DataRowAction action) {
|
|
this.eventRow = row;
|
|
this.eventAction = action;
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public OrgDetailsRow Row {
|
|
get {
|
|
return this.eventRow;
|
|
}
|
|
}
|
|
|
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
|
public System.Data.DataRowAction Action {
|
|
get {
|
|
return this.eventAction;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#pragma warning restore 1591 |