Pilot1Derived

Pilot1Derived.cs
01/* Copyright (C) 2007 db4objects Inc. http://www.db4o.com */ 02 03namespace Db4objects.Db4odoc.QBE 04{ 05 class Pilot1Derived: Pilot1 06 { 07 public Pilot1Derived(string name, int points) 08 : base(name, points) 09 { 10 11 } 12 } 13}
 

Pilot1Derived.vb
01' Copyright (C) 2007 db4objects Inc. http://www.db4o.com 02 03Namespace Db4objects.Db4odoc.QBE 04 Class Pilot1Derived 05 Inherits Pilot1 06 Public Sub New(ByVal name As String, ByVal points As Integer) 07 08 MyBase.New(name, points) 09 End Sub 10 End Class 11End Namespace