public LoadFlowController(ILoadFlowService loadFlowService, IContentOfThePlanService contentOfThePlanService, ILectureFlowService lectureFlowService, IEmployeeService employeeService, IDisciplineService disciplineService)
 {
     this.loadFlowService         = loadFlowService;
     this.lectureFlowService      = lectureFlowService;
     this.employeeService         = employeeService;
     this.contentOfThePlanService = contentOfThePlanService;
     this.disciplineService       = disciplineService;
 }
 public SubgroupController(ISubgroupService subgroupService, ILectureFlowService lectureFlowService)
 {
     this.subgroupService    = subgroupService;
     this.lectureFlowService = lectureFlowService;
 }
 public LectureFlowController(ILectureFlowService lectureFlowService)
 {
     this.lectureFlowService = lectureFlowService;
 }