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;
 }
Esempio n. 3
0
 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;
 }
Esempio n. 4
0
 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;
 }
Esempio n. 5
0
 public PrintAllPublishersCommand(IDTOFactory DTOFactory, IPublisherService publisherService)
     : base(DTOFactory)
 {
     this.publisherService = publisherService;
 }
Esempio n. 6
0
 public Command(IDTOFactory DTOFactory)
 {
     this.DTOFactory = DTOFactory;
 }
Esempio n. 7
0
 public RemovePublisherCommand(IDTOFactory DTOFactory, IPublisherService publisherService)
     : base(DTOFactory)
 {
     this.publisherService = publisherService;
 }
Esempio n. 8
0
        public PrintAllAuthorsCommand(IDTOFactory DTOFactory, IAuthorService authorService)
            : base(DTOFactory)

        {
            this.authorService = authorService;
        }
Esempio n. 9
0
 public RemoveBookCommand(IDTOFactory DTOFactory, IBookService bookService)
     : base(DTOFactory)
 {
     this.bookService = bookService;
 }
 public PrintBooksByAuthorCommand(IDTOFactory DTOFactory, IAuthorService authorService)
     : base(DTOFactory)
 {
     this.authorService = authorService;
 }
Esempio n. 11
0
 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;
 }
Esempio n. 13
0
 public AttendancesControllerService(IAttendanceDTOService attendanceService, IViewFactory viewFactory, IDTOFactory dtoFactory)
 {
     this.viewFactory       = viewFactory;
     this.attendanceService = attendanceService;
     this.dtoFactory        = dtoFactory;
 }
Esempio n. 14
0
 public FindBookByTitleCommand(IDTOFactory DTOFactory, IBookService bookService)
     : base(DTOFactory)
 {
     this.bookService = bookService;
 }
Esempio n. 15
0
 public PrintAllBooksCommand(IDTOFactory DTOFactory, IBookService bookService)
     : base(DTOFactory)
 {
     this.bookService = bookService;
 }
Esempio n. 16
0
 public JournalsControllerService(IJournalDTOService service, IViewFactory viewFactor, IDTOFactory dtoFactory)
 {
     this.viewFactory = viewFactor;
     this.service     = service;
     this.dtoFactory  = dtoFactory;
 }