We are following Hungarian notation to declare private variables as below.
private IRepository<Request> _requestRepo;
public RequestService(IRepository<Request> requestRepo)
{
_requestRepo = requestRepo;
}
The above code shows a sonar issue like Field name does not start with underscore. Please tell me how to declare the private variables to satisfy coding standards?