Tagged Questions

4
votes
4answers
729 views

Application service layer as static classes

In my ASP.NET MVC application, I have a project that contains all the business logic/service layer. This project interacts with my Database (Entity framework) which is located in a separate project. ...
3
votes
2answers
1k views

ASP.NET MVC, ActionFilters, static classes and passing data around

I'd like to hear your opinions and maybe better suggestions for the following scenario: I have define a custom ActionFilter that does some job and comes out with some value. I would like to use that ...