Are you saying your problem is that you don't have the type to reference in the client?
There are two ways of handling this-- if you just use the Employee item as a data transfer object between the data access layer and the service layer, then you should make another object that the service layer and the service client share as a data contract. Then, you turn the Employee object into that data contract object, and send it along.
If you don't want to do that, put the Employee class into its own project that can be referenced by all of the projects.