public EmployeePresenter(IEmployeeView view)
 {
     this.View = view;
     this.Repository = new EmployeeRepository();
     this.View.DepartmentSelected += OnDepartmentSelected;
 }
 public EmployeePresenter(IEmployeeView view)
 {
     this.View       = view;
     this.Repository = new EmployeeRepository();
     this.View.DepartmentSelected += OnDepartmentSelected;
 }