Hi, I have DAL which has methods to communicate with database. Which is the best way to define that class? I mean, Static/normal class?
>From my button click, should I create an instance of the class and access the methods inside or by directly calling the public methods of the class(static)?
