I’d like some best-practice advice regarding naming a C# class that interacts with an iSeries web service. I’m thinking either iSeriesServiceProxy or ISeriesServiceProxy, but each have their (probably obvious) problems. The former violates “Class names should start with a capital letter”, while the latter looks like an interface. I could just dream up another name for this class, but this is the one that feels right. Which (if either) is the correct choice?
I’d like some best-practice advice regarding naming a C# class that interacts with an
Share
Choose a name based on the function of the web service, not the technology it uses.