let's use as example:
class AccountDAO {
create(){..}
read(){..}
update(){..}
delete() {..}
}
how many responsabilities are there? 1 or 4 ?
|
let's use as example:
how many responsabilities are there? 1 or 4 ? |
||||
|
|
|
SRP shouldn't be understood in a strict manner. One object should have very few responsabilities, not "one". Here AccountDAO is only responsible for Account persistance, so it has only one responsability. |
|||||||||
|