We need to know how you're using your class and how your constructor is implemented (it might be a good idea to have a default one as well), but before you go any further...
1 2 3
class Employee
{
Public: //It's not supposed to be capitalized.
why do you recommend that i don't use the namespace std header file?
It is a bad habit that you will have to break when you write code professionally. Doing this causes every user of that header to get all of std:: in their global namespace, whether they wanted that or not.
It is not likely to affect you directly when you are writing code solely for yourself.
But you cannot get away with that writing code like that professionally. And it's easier to develop good habits now than to break bad habits on the job.