C Sharp - Inheritance

Inheritance

1
2
3
4
5
6
7
Public class BaseType {
Id: int; // this is the primary key
}

Public class Employee : BaseType {
String LName {get; set;}
}