First, make sure that your project type is Windows Application, which is recommended for windows services.
What you did is not enough in order to install and start your service. You cannot yet install your service. You have to provide an installer class which can then be used by InstallUtil to register your service.
You can see an example of this in the ServiceProcessInstaller class documentation.
After that, build your service again and install it by running in a command window the following:
"%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe" "YourServiceExeName.exe"
You will then be able to see your service in the services snap-in.