0
I see many criticisms of the anemic model of application, so I decided to remove this doubt.
I have two ASP.NET MVC applications that could share the same Models (will make use of the same properties and methods)
Thinking about not rewriting or copying and pasting all these people, I’ve been reading about the Repository standard in the links of Macoratti (there are 3 articles http://www.macoratti.net/15/11/net_repo1.htm), and saw that there is a separation between the rule of business and properties, leaving the model closer to the anemic model.
Apparently it would solve my initial problem as I would create a domain layer (Models), and a repository where I would place my BLL classes, with business rules and bank access, and could repurpose these DLL’s on my other site
Could someone show me what the bad points of this would be? As if I’m not confused about the Repository standard? Or if there’s another way out so I don’t have to rewrite all these classes?