Access modifier private to protected.

1 ヶ月 前
private readonly ILanguageService _languageService;
To
protected readonly ILanguageService _languageService;

All private access modifier change to protected. Can anyone please tell me why nopCommerce did this? So far I understand whenever a developer inherits the service/ factory class from the plugin then he/she has to pass the required parameters of the base class to satisfy the constructor, so how does it differ?



https://prnt.sc/rKeWDh6LAgD3
1 ヶ月 前
We thought it would be cool, so we did it.