예제 #1
0
        public CreateEmployee(EmployeeModel _employeeModel)
        {
            InitializeComponent();

            employeeModel = _employeeModel;

            checkDatabase.Checked = false;
            checkFile.Checked = false;
        }
예제 #2
0
        public EmployeeForm()
        {
            InitializeComponent();

            employeeModel = new EmployeeModel();
            employeesView = new List<EmployeeView>();

            employeesGrid.AutoGenerateColumns = false;
            employeesGrid.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
            employeesGrid.ClearSelection();

            FilterCheckDef();
        }