aspnet / WebHooks

[Archived] Libraries to create and consume web hooks on ASP.NET Core. Project moved to https://github.com/aspnet/AspLabs
Apache License 2.0
627 stars 439 forks source link

Use `internal` for realz #233

Closed dougbu closed 6 years ago

dougbu commented 6 years ago

The WebHookRequestReader, SalesforceResultCreator, and *ServiceCollectionSetup classes are currently pub-Internal i.e. in the .Internal namespace but not actually internal. We have no requirements to keep these publicly-accessible because all are used only within their containing assembly or retrieved from DI using truly-public interfaces (IWebHookRequestReader and ISalesforceResultCreator). Should use internal for all of these.

Side note: SalesforceResultCreator has a few virtual methods. That is also not necessary; should remove the modifier.

dougbu commented 6 years ago

8f08e0c8ec