Help with vb.net code
Hi all...
Could anyone help me with this code?
I need to create a base class "shopkeeper" with the following...
Constructor(take first name and last name as arguments)
Properties (First name and last name)
Method...To String (overrides the base class method and returns the full name of student in form)
Abstract read only property...(Monthly pay)
This is what I have so far''''
Public Class Employee
Private strFirstName As String
Private strLastName As String
Public Sub New(ByVal FirstName As String, ByVal LastName As String, _
ByVal AnnualSalary As Integer)
End Sub
End Class
Any help or pointers would be much appreciated.
Thanks
|