public StudentsControllerService(IStudentDTOService studentService, ApplicationUserManager userManager, IViewFactory viewFactory, IDTOFactory dtoFactory) { this.studentService = studentService; this.userManager = userManager; this.viewFactory = viewFactory; this.dtoFactory = dtoFactory; }
public SubmissionsControllerService(ISubmissionDTOService submissionService, IAssignmentDTOService assignmentService, IViewFactory viewFactory, IDTOFactory dtoFactory ) { this.viewFactory = viewFactory; this.service = submissionService; this.assigmentService = assignmentService; this.dtoFactory = dtoFactory; }
public WorkDaysControllerService(IWorkDayDTOService workDayService, IStudentDTOService studentService, IAttendanceDTOService attendanceService, IObjectToObjectMapper mapper, IViewFactory viewFactory, IDTOFactory dtoFactory) { this.attendanceService = attendanceService; this.studentService = studentService; this.workDayService = workDayService; this.mapper = mapper; this.viewModelFactory = viewFactory; this.dtoFactory = dtoFactory; }
public AssignmentsControllerService(IAssignmentDTOService service, IMentorDTOService mentorService, IStudentDTOService studentService, IAssignmentFileDTOService fileService, ISubmissionDTOService submissionService, IObjectToObjectMapper mapper, IViewFactory viewFactory, IDTOFactory dtoFactory) { this.assignmentService = service; this.mentorService = mentorService; this.studentService = studentService; this.fileService = fileService; this.submissionService = submissionService; this.mapper = mapper; this.viewFactory = viewFactory; this.dtoFactory = dtoFactory; }
public PrintAllPublishersCommand(IDTOFactory DTOFactory, IPublisherService publisherService) : base(DTOFactory) { this.publisherService = publisherService; }
public Command(IDTOFactory DTOFactory) { this.DTOFactory = DTOFactory; }
public RemovePublisherCommand(IDTOFactory DTOFactory, IPublisherService publisherService) : base(DTOFactory) { this.publisherService = publisherService; }
public PrintAllAuthorsCommand(IDTOFactory DTOFactory, IAuthorService authorService) : base(DTOFactory) { this.authorService = authorService; }
public RemoveBookCommand(IDTOFactory DTOFactory, IBookService bookService) : base(DTOFactory) { this.bookService = bookService; }
public PrintBooksByAuthorCommand(IDTOFactory DTOFactory, IAuthorService authorService) : base(DTOFactory) { this.authorService = authorService; }
public RemoveAuthorCommand(IDTOFactory DTOFactory, IAuthorService authorService) : base(DTOFactory) { this.authorService = authorService; }
public ExportAllAuthorsCommand(IDTOFactory DTOFactory, IAuthorService authorService, IPdfExporter pdfExporter) : base(DTOFactory) { this.authorService = authorService; this.pdfExporter = pdfExporter; }
public AttendancesControllerService(IAttendanceDTOService attendanceService, IViewFactory viewFactory, IDTOFactory dtoFactory) { this.viewFactory = viewFactory; this.attendanceService = attendanceService; this.dtoFactory = dtoFactory; }
public FindBookByTitleCommand(IDTOFactory DTOFactory, IBookService bookService) : base(DTOFactory) { this.bookService = bookService; }
public PrintAllBooksCommand(IDTOFactory DTOFactory, IBookService bookService) : base(DTOFactory) { this.bookService = bookService; }
public JournalsControllerService(IJournalDTOService service, IViewFactory viewFactor, IDTOFactory dtoFactory) { this.viewFactory = viewFactor; this.service = service; this.dtoFactory = dtoFactory; }