20 lines
383 B
C#
20 lines
383 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Payroll.Controls.CustomControls
|
|
{
|
|
public partial class ctlEmployee2 : UserControl
|
|
{
|
|
public ctlEmployee2()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|