I'm working on an MVC project at the moment with a semi-TDD approach to the development. I want to continue with this approach, but I'm starting to have doubts over a decision I've made when structuring my code. And before the code base gets big, I'm having thoughts about refactoring(!)
I currently have a number of classes:
- IUserRepository
- UserRepository (which interacts with a LINQ.dbml and SQL Server persistence layer)
FakeUserRepository (which generates some test data for me and allows me to faff about with).
UserService This acts as a layer for as much of the business logic to go into as I can.
- CustomMembershipProvider Barebones class that for the most part, simply calls a single method from the UserService.
- CustomMembershipUser
(I plan to implement CustomProfileProvider, and if needed CustomRoleProvider in the very near future)
This works OK for the main part, however I'm starting to doubt its the greatest approach. Currently my CustomMembershipProvider is simply a one-line pointer to UserService almost 99% of the time. And the time its not, I'm thinking "shouldn't I be unit testing this..?".
I was initially put off leaving Membership as the core place for the code, and instead create a Service Layer for this purpose. However, I'm starting to believe my fears may be misplaced now, and it would indeed be beneficial for it to be there (it would remove at least one layer from the equation!). One of my big worries was the inability to fully unit test the Membership code if I didn't break it into the Service Layer. This doesn't seem to be a great problem as I may be able to simply add some config lines to the App.config and away we go...
Currently I'm in favour of ditching the Service layer and making things (theoretically) easier for me (as the way I see it, the MembershipProvider is effectively a service). Has anyone had any experiences or thoughts about a way forward? (before I procrastinate into nothingness) :)
