S
scott ocamb
All,
I have a Form Class, shown below that will have a collection of Question
objects.
The Question Class has an Approve method.
When any single Question is approved, I need to know if all Questions in the
Collection in the Form are approved.
A single Question does not know about the collection it is part of in the
form.
Any impelemtation suggestions would be appreciated.
public class Form
{
private List<Question> _questions = new List<Question>();
}
I have a Form Class, shown below that will have a collection of Question
objects.
The Question Class has an Approve method.
When any single Question is approved, I need to know if all Questions in the
Collection in the Form are approved.
A single Question does not know about the collection it is part of in the
form.
Any impelemtation suggestions would be appreciated.
public class Form
{
private List<Question> _questions = new List<Question>();
}