Import this
import {Inject} from '@angular/core';
And change your constructor to
constructor(@Inject(AuthService) _authService: AuthService)
{
}
you should @Inject any service into constructor before using it.
and your service should be injectable
@Injectable()
export class AuthService {
}