As long as you're not doing any string concatenation in code OR your sql command, you are safe from SQL Injection.
EDIT
For clarification, it is ok if your parameters are string values. But if your parameter contains SQL you're probably not safe. As far as what I meant by string concatenation in your SQL command, you would likely have to use the SQL command EXEC in order to get it to work and you'd be in trouble.
SAFE:
SELECT * FROM Employees WHERE employeeId = @employeeId
DANGEROUS:
EXEC ('SELECT * FROM Employees WHERE employeeId = ''' + @employeeId + '''')
-OR-
EXEC SP_EXECUTESQL ('SELECT * FROM Employees WHERE employeeId = ''' + @employeeId + '''')