diff --git a/View/Form1.Designer.cs b/View/DateForm.Designer.cs
similarity index 75%
rename from View/Form1.Designer.cs
rename to View/DateForm.Designer.cs
index 74562d2..24b347b 100644
--- a/View/Form1.Designer.cs
+++ b/View/DateForm.Designer.cs
@@ -1,14 +1,14 @@
namespace View
{
- partial class Form1
+ partial class DateForm
{
///
- /// Required designer variable.
+ /// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
- /// Clean up any resources being used.
+ /// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
@@ -23,15 +23,15 @@
#region Windows Form Designer generated code
///
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(800, 450);
- this.Text = "Form1";
+ this.Text = "DateForm";
}
#endregion
diff --git a/View/DateForm.cs b/View/DateForm.cs
new file mode 100644
index 0000000..9c771a3
--- /dev/null
+++ b/View/DateForm.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace View
+{
+ public partial class DateForm : Form
+ {
+ public DateForm()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/View/Form1.resx b/View/DateForm.resx
similarity index 100%
rename from View/Form1.resx
rename to View/DateForm.resx
diff --git a/View/DatesForm.Designer.cs b/View/DatesForm.Designer.cs
new file mode 100644
index 0000000..444ef1c
--- /dev/null
+++ b/View/DatesForm.Designer.cs
@@ -0,0 +1,39 @@
+namespace View
+{
+ partial class DatesForm
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Text = "DatesForm";
+ }
+
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/View/DatesForm.cs b/View/DatesForm.cs
new file mode 100644
index 0000000..2c321a4
--- /dev/null
+++ b/View/DatesForm.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace View
+{
+ public partial class DatesForm : Form
+ {
+ public DatesForm()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/View/DatesForm.resx b/View/DatesForm.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/View/DatesForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/View/DescriptionForm.Designer.cs b/View/DescriptionForm.Designer.cs
new file mode 100644
index 0000000..3158ab6
--- /dev/null
+++ b/View/DescriptionForm.Designer.cs
@@ -0,0 +1,39 @@
+namespace View
+{
+ partial class DescriptionForm
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Text = "DescriptionForm";
+ }
+
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/View/DescriptionForm.cs b/View/DescriptionForm.cs
new file mode 100644
index 0000000..e53ea4d
--- /dev/null
+++ b/View/DescriptionForm.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace View
+{
+ public partial class DescriptionForm : Form
+ {
+ public DescriptionForm()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/View/DescriptionForm.resx b/View/DescriptionForm.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/View/DescriptionForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/View/Form1.cs b/View/Form1.cs
deleted file mode 100644
index 5d6d908..0000000
--- a/View/Form1.cs
+++ /dev/null
@@ -1,10 +0,0 @@
-namespace View
-{
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- }
-}
\ No newline at end of file
diff --git a/View/InviteForm.Designer.cs b/View/InviteForm.Designer.cs
new file mode 100644
index 0000000..ef7c2ab
--- /dev/null
+++ b/View/InviteForm.Designer.cs
@@ -0,0 +1,39 @@
+namespace View
+{
+ partial class InviteForm
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Text = "InviteForm";
+ }
+
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/View/InviteForm.cs b/View/InviteForm.cs
new file mode 100644
index 0000000..4ba6255
--- /dev/null
+++ b/View/InviteForm.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace View
+{
+ public partial class InviteForm : Form
+ {
+ public InviteForm()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/View/InviteForm.resx b/View/InviteForm.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/View/InviteForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/View/InvitedForm.Designer.cs b/View/InvitedForm.Designer.cs
new file mode 100644
index 0000000..dc67039
--- /dev/null
+++ b/View/InvitedForm.Designer.cs
@@ -0,0 +1,39 @@
+namespace View
+{
+ partial class InvitedForm
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Text = "InvitedForm";
+ }
+
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/View/InvitedForm.cs b/View/InvitedForm.cs
new file mode 100644
index 0000000..e99fe31
--- /dev/null
+++ b/View/InvitedForm.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace View
+{
+ public partial class InvitedForm : Form
+ {
+ public InvitedForm()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/View/InvitedForm.resx b/View/InvitedForm.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/View/InvitedForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/View/MainForm.Designer.cs b/View/MainForm.Designer.cs
new file mode 100644
index 0000000..cfcf9de
--- /dev/null
+++ b/View/MainForm.Designer.cs
@@ -0,0 +1,39 @@
+namespace View
+{
+ partial class MainForm
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Text = "MainForm";
+ }
+
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/View/MainForm.cs b/View/MainForm.cs
new file mode 100644
index 0000000..bdb71e7
--- /dev/null
+++ b/View/MainForm.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace View
+{
+ public partial class MainForm : Form
+ {
+ public MainForm()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/View/MainForm.resx b/View/MainForm.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/View/MainForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/View/TypeForm.Designer.cs b/View/TypeForm.Designer.cs
new file mode 100644
index 0000000..2485477
--- /dev/null
+++ b/View/TypeForm.Designer.cs
@@ -0,0 +1,39 @@
+namespace View
+{
+ partial class TypeForm
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Text = "TypeForm";
+ }
+
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/View/TypeForm.cs b/View/TypeForm.cs
new file mode 100644
index 0000000..6b3da17
--- /dev/null
+++ b/View/TypeForm.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace View
+{
+ public partial class TypeForm : Form
+ {
+ public TypeForm()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/View/TypeForm.resx b/View/TypeForm.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/View/TypeForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/View/TypesForm.Designer.cs b/View/TypesForm.Designer.cs
new file mode 100644
index 0000000..b77216e
--- /dev/null
+++ b/View/TypesForm.Designer.cs
@@ -0,0 +1,39 @@
+namespace View
+{
+ partial class TypesForm
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Text = "TypesForm";
+ }
+
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/View/TypesForm.cs b/View/TypesForm.cs
new file mode 100644
index 0000000..d958335
--- /dev/null
+++ b/View/TypesForm.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace View
+{
+ public partial class TypesForm : Form
+ {
+ public TypesForm()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/View/TypesForm.resx b/View/TypesForm.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/View/TypesForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/View/UserForm.Designer.cs b/View/UserForm.Designer.cs
new file mode 100644
index 0000000..052bf1a
--- /dev/null
+++ b/View/UserForm.Designer.cs
@@ -0,0 +1,39 @@
+namespace View
+{
+ partial class UserForm
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Text = "UserForm";
+ }
+
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/View/UserForm.cs b/View/UserForm.cs
new file mode 100644
index 0000000..128c032
--- /dev/null
+++ b/View/UserForm.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace View
+{
+ public partial class UserForm : Form
+ {
+ public UserForm()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/View/UserForm.resx b/View/UserForm.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/View/UserForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/View/UsersForm.Designer.cs b/View/UsersForm.Designer.cs
new file mode 100644
index 0000000..93fa841
--- /dev/null
+++ b/View/UsersForm.Designer.cs
@@ -0,0 +1,39 @@
+namespace View
+{
+ partial class UsersForm
+ {
+ ///
+ /// Required designer variable.
+ ///
+ private System.ComponentModel.IContainer components = null;
+
+ ///
+ /// Clean up any resources being used.
+ ///
+ /// true if managed resources should be disposed; otherwise, false.
+ protected override void Dispose(bool disposing)
+ {
+ if (disposing && (components != null))
+ {
+ components.Dispose();
+ }
+ base.Dispose(disposing);
+ }
+
+ #region Windows Form Designer generated code
+
+ ///
+ /// Required method for Designer support - do not modify
+ /// the contents of this method with the code editor.
+ ///
+ private void InitializeComponent()
+ {
+ this.components = new System.ComponentModel.Container();
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ClientSize = new System.Drawing.Size(800, 450);
+ this.Text = "UsersForm";
+ }
+
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/View/UsersForm.cs b/View/UsersForm.cs
new file mode 100644
index 0000000..13a729f
--- /dev/null
+++ b/View/UsersForm.cs
@@ -0,0 +1,20 @@
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows.Forms;
+
+namespace View
+{
+ public partial class UsersForm : Form
+ {
+ public UsersForm()
+ {
+ InitializeComponent();
+ }
+ }
+}
diff --git a/View/UsersForm.resx b/View/UsersForm.resx
new file mode 100644
index 0000000..1af7de1
--- /dev/null
+++ b/View/UsersForm.resx
@@ -0,0 +1,120 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file