Posts by Adriano Caldeira • 49 points
2 posts
-
-2
votes1
answer80
viewsQ: Doubt in inheritance c#
I have a conceptual doubt about inheritance, where I have a student and at some point this student will become an employee and this employee he was born in the system as a student and if everything…
-
4
votes2
answers180
viewsQ: Change of object in inheritance
I have the following classes: class Funcionario { } class Coordenador : Funcionario { } class Gerente : Funcionario { } There a certain moment a Coordinator can become a Manager. How to solve this?…