We can also use the ServiceBehaviourAttribute at the Service class in order to set the InstanceContextMode as below:
[ServiceBehavior(InstanceContextMode = InstanceContextMode.Single,
ConcurrencyMode = ConcurrencyMode.Multiple)]
public class MyService : IMyService
{
//service code
}