I've Application based on MVC architecture. - WEBproject - BLLproject - DALproject
In the web I use class "commands" attached to the pages "views" aspx.
I use a gridview connected to a ObjectDataSource (ods) with data stored in session.
the ods uses methods update, insert, delete to query a list of objects stored in session.
My problem is that I do not know where to put the methods used by the ods, I am tempted to put in my BLL layer.
It is not disorder to query session from the BLL layer?
hoping to have been fairly clear and understandable.
Thank you.