... Alte Atribute: Public Class Factura Private M - Cotatva As Decimal Private M - Valoare As Decimal

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 2

Motenire i polimorfism

Public Class Factura ... alte atribute Private m_CotaTVA As Decimal Private m_Valoare As Decimal ... alte proprietati
Public Property CotaTVA() As Decimal ... End Property Public Property Valoare() As Decimal End Property Overridable Function ValTotala() As Decimal Return (Valoare + Valoare * CotaTVA) End Function End Class
Conf. dr. Cozgarea Adrian

Rescrierea metodelor i polimorfism


Public Class FacturaExterna Inherits Factura Private m_ComisionVamal As Decimal

Public Property ComisionVamal() As Decimal ... End Property

Overrides Function ValTotala() As Decimal Return (Valoare + Valoare * CotaTVA + Valoare *ComisionVamal) End Function
End Class

Conf. dr. Cozgarea Adrian

You might also like