Interface vs. Base class is still a fairly gray area to me. I'm reading a book on ASP.NET 3.5 Enterprise Development and the author states that all tables will have the following fields:
InsertDate
InsertENTUserAccountId
UpdateDate
UpdateENTUserAccountId
Version
If this were me coding the above requirement, I would create a base business object class that contained these fields, and all business objects would inherit from it. However, the author has created these as an Interface instead. Bad idea? Good idea? Doesn't matter?
Update
There is a base class that implements this Interface. It appears that all business objects would then inherit from the base. But even still, I would have just put this Interface in the base class...?