public ChangeSalary(Processing processing, EmployeeViewModel currentEmployeeData)
        {
            this.InitializeComponent();
            this.processor = processing;
            this.employeeData = currentEmployeeData;

            this.InitializeComponent();
        }
        public MainWindow(IEmployeeService employeeService, IDepartmentService departmentService, Processing processing)
        {
            this.InitializeComponent();

            this.employeeService = employeeService;
            this.departmentService = departmentService;
            this.processing = processing;
        }
 public CreateEmployee(Processing processing)
 {
     this.InitializeComponent();
     this.processing = processing;
 }