public bool UpdateEmployee(string title, string name, string surname, string phoneNumber,
                            string email, int?departmentId, int id)
 {
     return(_logic.UpdateEmployee(title, name, surname, phoneNumber, email, departmentId, id));
 }