I have the following:
public class ContentsController : BaseController {
private IContentService _content;
private IPageService pageService;
private IReferenceService _reference;
private ISequenceService seqService;
public ContentsController(
IContentService contentService,
IPageService pageService,
IReferenceService referenceService,
ISequenceService sequenceService) {
this._content = contentService;
this.pageService = pageService;
this._reference = referenceService;
this.seqService = sequenceService;
}
Note that it's completely mixed up with different naming standards.
Is there anything recommended for the naming of services that are used by my controller?