Initial commit.
This commit is contained in:
26
QueueSys/frmEmployeeView.cs
Normal file
26
QueueSys/frmEmployeeView.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
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 QueueSys
|
||||
{
|
||||
public partial class frmEmployeeView : Form
|
||||
{
|
||||
public frmEmployeeView()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void frmEmployeeView_Load(object sender, EventArgs e)
|
||||
{
|
||||
Form frm = new frmCustomerView();
|
||||
frm.Show();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user