I have three account files (controller, model and view) and two controller files (account controller and session controller). I want all account files to share a functionality among them. I want all controller files to share an other functionality among them. The programming language I'm using doesn't support multiple inheritance, so
AccountController can't extend BaseAccount and BaseController at the same time. If I make all BaseAccount or BaseController methods empty, I can have an interface, but if I implement that interface in two different places, that is, I make a contract to implement a method in two different places, I will have duplicated code. Do interfaces solve DDD with code duplication?
interface A {
function doStuff() {
}
}
class B implements A {
function doStuff() {
// a code
}
}
class C implements A {
function doStuff() {
// the same code!!!
}
}
