public GroupsController(IGroupManager groupManager, IGroupSubjectManager groupsubjManager)
 {
     this.groupManager     = groupManager;
     this.groupsubjManager = groupsubjManager;
 }
示例#2
0
 public SubjectsController(ISubjectManager subjectManager, IGroupSubjectManager groupsubjManager)
 {
     this.subjectManager   = subjectManager;
     this.groupsubjManager = groupsubjManager;
 }