BP11: Non-confusing, descriptiove and self-explanatory variable naming
Always try to
Examples of how not to do it:
var operationRep = operationRepository.GetFirst(p => p.OperationId == operationId);
One would say that the variable contains repository. But no, it contains the operation.