Hi there,
I am using a standard repository pattern with a service layer which calls the data layer..
I have some Utility classes i.e. one that deals with Sending email (method name = SendMail)
Where is the correct place to put this?
Inside the service layer as a method called SendMail
hence I have CustomerService which calls CustomerRepository
So in this case i create a new UtilityService which will hold all the business logic for utility classes i.e. Sendmail
Little bit confused where i should put these
Any help really appreciated