Hey everyone,
I have an ASP.NET MVC 2 project that I'm working on and I'm wondering where I should place some of my code.
I currently have a UsersModel which consists of a bunch of static methods that operate against my data context.
These methods include such things as: UserExistsInDatabase
, UserIsRegisteredForActivity
, GetUserIdFromFacebookId
etc etc.
Should these methods be inside a UsersModel class or would they be more suited to a user helper class outside of the models context?
Cheers for any pointers.