In an ASP.NET MVC application, what do you do when you have unique classes that are not controllers, helpers, or views?
For example, let's say you have a class of utilities that are useful for processing map / location data.
These utilities can be used by more than one controller.
Would you create a top-level folder / namespace for them and name it "Maps" or something else?
source
share