I'm building an n-tier application, I have
UI, BL, DAL & Entities (built from POCO) projects. (All projects have a reference to the Entities).
My question is - how should I pass user input from the
UI to the BL, as a bunch of strings passed to the BL method and the BL will build the object from the parameters, or should I
…