Hi,
I just need some help desiging my classes.
My D
B is setup like this:
Table: Event ( Primary Key - EventID)
Table:EventItem ( Primary Key - EventItemID; ForiegnKey - EventID )
Simply put the Event contains a list of Event Items. Therefore i assume the Event is a Editable Root class. But what is EventItem? and how do i get the Event to populate the EventItems list?
In the Project Tracker example i cannot see anything like this. The closest is the Project Tracker and Project Resource classes, but every method for populating the Project Resource list takes the Assignment Class.
Can anyone help me?
Right so far:
public
class Event : BusinessBase<Event>public
class EventItems : BusinessListBase<EventItems, EventItem>public
class EventItem : BusinessBase<EventItem>Is this correct?
What do i do if the EventItem has a EventSubItem list? DOes this change it from an editable child?
Copyright (c) Marimer LLC