My asp.net controllers action takes the FormCollection as a parameter.
I then loop through my own collection, do a lookup in the form collection for a value etc.
I moved all my code to my business logic layer, and just call my business logic layer in my action like:
SomeManager.Update(formCollection);
But I am feeling a bit weary passing in a formcollection to my business logic layer.
Do I really have a choice here? any other ideas?
or is it perfectly fine?