public TimetableController(FpmClient fpmClient, RozkladClient rozkladClient, ResultLessonsMapper resultLessonsMapper, MappingService mappingService)
 {
     this.rozkladClient  = rozkladClient;
     this.fpmClient      = fpmClient;
     mapper              = resultLessonsMapper;
     this.mappingService = mappingService;
 }
예제 #2
0
 public Form1()
 {
     InitializeComponent();
     MapSubjects.Enabled  = false;
     MapTeachers.Enabled  = false;
     MapTimetable.Enabled = false;
     fpmClient            = new FpmClient();
 }
예제 #3
0
 public SubjectsController(FpmClient fpmClient, RozkladClient rozkladClient, MappingService service, SetService <FpmGroup> setService, IMapper <string, FpmSubject> subjectMapper)
 {
     this.rozkladClient = rozkladClient;
     this.fpmClient     = fpmClient;
     this.service       = service;
     this.setService    = setService;
     this.subjectMapper = subjectMapper;
 }
예제 #4
0
 public TeachersController(FpmClient fpmClient, RozkladClient rozkladClient, MappingService service, SetService <FpmTeacher> setService, IMapper <string, FpmTeacher> teacherMapper, IMapper <string, FpmSubject> subjectMapper)
 {
     this.rozkladClient = rozkladClient;
     this.fpmClient     = fpmClient;
     this.service       = service;
     this.setService    = setService;
     this.teacherMapper = teacherMapper;
     this.subjectMapper = subjectMapper;
 }
 public SetSubjectsService(FpmClient client) : base(client)
 {
 }
예제 #6
0
 public HomeController(FpmClient fpmClient, RozkladClient rozkladClient, MappingService service)
 {
     this.fpmClient     = fpmClient;
     this.rozkladClient = rozkladClient;
     this.service       = service;
 }
예제 #7
0
 public TeachersMapping(FpmClient fpmClient, RozkladClient rozkladClient) : this()
 {
     this.fpmClient     = fpmClient;
     this.rozkladClient = rozkladClient;
     mappedTeachers     = new Dictionary <string, string>();
 }
예제 #8
0
 public SetTeacherService(FpmClient client) : base(client)
 {
 }
예제 #9
0
 public SetService(FpmClient client)
 {
     this.client = client;
 }
예제 #10
0
 public SubjectsMapping(FpmClient fpmClient, RozkladClient rozkladClient) : this()
 {
     this.fpmClient     = fpmClient;
     this.rozkladClient = rozkladClient;
     mappedSubjects     = new Dictionary <string, string>();
 }