Advice for 3 Layer Architecture,
i have a 3 layer Architecture project, I have to add Clients, Orders and Products should I make a OrdersManager, ProductManager and so on?
Same question but with the repo that will write to the database should I have one for the entire project or one for each type?
I'd really like some advice
1 Reply
please don't call all of your classes SomethingManager, rather use a name the reflects what they are used for
you should start from the operations you need/what the application should do, get a clear idea about those, and then find a suitable design