I created a a base BO class named ApplicationBaseBusinessClass.vb with the following code:
Imports
Public
#Region
#End
<Category(EDITOR_CATEGORY_CRUD), _
DefaultValue(
_PrimaryKeyIsAutoIncremented = value
_PrimaryKeyIsUpdatable = value
loFieldPropDescriptor.SetValue(
End
I then changed the Ingeritance in my BizCustomer.vb class from:
To:
Now I am getting a compiler error in my BizCustomer.vb "Too many arguments to Public Sub New()", this is the code created by the BOM that generates the error:
Here is the code for the BO bizCustomer.vb
<Serializable()> _
<System.Diagnostics.DebuggerNonUserCodeAttribute()> _
Container.Add(
What am I doing wrong here?
P.S.
Sorry for the long post.