❔ Why do we need to provide values for base class we are inheriting from?
For example i have this:
public class Answer:Entity<Guid> { protected Answer() { } public Answer(Guid id) : base(id) { } }
public class Answer:Entity<Guid> { protected Answer() { } public Answer(Guid id) : base(id) { } }
Why do i need to base the Id back to the base class? what does it even do? How does the flow work? How does it know to set the id of the answer class because we are passing it to the base class?