public Employee AddEmployee(Employee employee) { var newEmployee = _employeeRepository.Insert(employee); return(newEmployee); }