Just doing some research for my next project and what I would like to know is whether we should take our BLL and just clone each action into a service contract? Or whether we should write new methods….?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Your best choice depends on how tightly coupled you want your BLL to be to your Service Layer. Loose coupling is a quality metric of strong software design. For this reason, I’d recommend you create new methods to keep the BLL loosely coupled to your Service Layer.