Ejemplo n.º 1
0
 static QuestionService()
 {
     service        = new GenericCrudByIntegerKey <Question>(new QuestionData());
     SubjectService = new GenericCrudByIntegerKey <Subject>(new SubjectData());
 }
Ejemplo n.º 2
0
 static StudentService()
 {
     service = new GenericCrudByIntegerKey <Student>(new StudentCrud());
 }
Ejemplo n.º 3
0
 static GradeServiceTwo()
 {
     service         = new GenericCrudByIntegerKey <Grade>(new GradeCrud());
     validateService = new ValidateGrid(new GradeCrud());
 }