CEL_Payroll/Payroll.Controls/CustomControls/ctlEmployee2.cs

20 lines
383 B
C#
Raw Normal View History

2024-09-17 14:30:13 +06:00
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();
}
}
}