I have a typical web application with the controllers calling the business methods. Should the methods in the business classes be implemented using static methods or instance methods. The business layer classes doe not maintain any state information.
Some additional information + The business classes do not maintain state specific information. + Would instantiating these objects on a per request basis consume a lot of memory as opposed to using static methods