프로젝트정보추가 site/plant/package/package

This commit is contained in:
chi
2023-01-13 20:05:38 +09:00
parent ff2b5834fa
commit cd902327c8
20 changed files with 2555 additions and 1243 deletions

View File

@@ -37,7 +37,6 @@ namespace FPJ0000 {
base.Tables.CollectionChanged += schemaChangedHandler;
base.Relations.CollectionChanged += schemaChangedHandler;
this.EndInit();
this.InitExpressions();
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
@@ -49,9 +48,6 @@ namespace FPJ0000 {
global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
this.Tables.CollectionChanged += schemaChangedHandler1;
this.Relations.CollectionChanged += schemaChangedHandler1;
if ((this.DetermineSchemaSerializationMode(info, context) == global::System.Data.SchemaSerializationMode.ExcludeSchema)) {
this.InitExpressions();
}
return;
}
string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string))));
@@ -72,7 +68,6 @@ namespace FPJ0000 {
}
else {
this.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
this.InitExpressions();
}
this.GetSerializationData(info, context);
global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
@@ -134,7 +129,6 @@ namespace FPJ0000 {
public override global::System.Data.DataSet Clone() {
DSComm cln = ((DSComm)(base.Clone()));
cln.InitVars();
cln.InitExpressions();
cln.SchemaSerializationMode = this.SchemaSerializationMode;
return cln;
}
@@ -210,7 +204,7 @@ namespace FPJ0000 {
this.Namespace = "http://tempuri.org/DSComm.xsd";
this.EnforceConstraints = true;
this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
this.tableUserList = new UserListDataTable(false);
this.tableUserList = new UserListDataTable();
base.Tables.Add(this.tableUserList);
}
@@ -275,12 +269,6 @@ namespace FPJ0000 {
return type;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
private void InitExpressions() {
this.UserList.IDNameColumn.Expression = "\'(\' + ID + \') \' + Name + \' \' + Description";
}
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public delegate void UserListRowChangeEventHandler(object sender, UserListRowChangeEvent e);
@@ -303,19 +291,10 @@ namespace FPJ0000 {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public UserListDataTable() :
this(false) {
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public UserListDataTable(bool initExpressions) {
public UserListDataTable() {
this.TableName = "UserList";
this.BeginInit();
this.InitClass();
if ((initExpressions == true)) {
this.InitExpressions();
}
this.EndInit();
}
@@ -433,21 +412,6 @@ namespace FPJ0000 {
return rowUserListRow;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public UserListRow AddUserListRow(string Name, string ID, string Outdate, string Description) {
UserListRow rowUserListRow = ((UserListRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
Name,
ID,
Outdate,
null,
Description};
rowUserListRow.ItemArray = columnValuesArray;
this.Rows.Add(rowUserListRow);
return rowUserListRow;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public UserListRow FindByID(string ID) {
@@ -518,12 +482,6 @@ namespace FPJ0000 {
return typeof(UserListRow);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
private void InitExpressions() {
this.IDNameColumn.Expression = "\'(\' + ID + \') \' + Name + \' \' + Description";
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
@@ -691,11 +649,11 @@ namespace FPJ0000 {
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public string IDName {
get {
try {
return ((string)(this[this.tableUserList.IDNameColumn]));
if (this.IsIDNameNull()) {
return string.Empty;
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("\'UserList\' 테이블의 \'IDName\' 열의 값이 DBNull입니다.", e);
else {
return ((string)(this[this.tableUserList.IDNameColumn]));
}
}
set {