Пример #1
0
 public LibraryController(StudentService studentService,
                          CollegeBranchService collegeBranchService,
                          BookService bookService,
                          BookRequestService bookRequestService,
                          UserProfileService userProfileService,
                          DirectoryService directoryService,
                          HistoryService historyService,
                          WebHelper webHelper,
                          LibraryBookService libraryBookService,
                          CategoryService categoryService,
                          BookCategoryService bookCategoryService)
 {
     this._studentService       = studentService;
     this._collegeBranchService = collegeBranchService;
     this._bookService          = bookService;
     this._bookRequestService   = bookRequestService;
     this._userProfileService   = userProfileService;
     this._directoryService     = directoryService;
     this._historyService       = historyService;
     this._webHelper            = webHelper;
     this._libraryBookService   = libraryBookService;
     this._categoryService      = categoryService;
     this._bookCategoryService  = bookCategoryService;
 }
Пример #2
0
 public StudentController(BookRequestService bookRequestService, StudentService studentService)
 {
     this._studentService     = studentService;
     this._bookRequestService = bookRequestService;
 }