Ejemplo n.º 1
0
 public ReturnBookHandler(IBorrowService borrowService, IBookService bookService,
                          IBookRepository bookRepository)
 {
     _borrowService  = borrowService;
     _bookService    = bookService;
     _bookRepository = bookRepository;
 }
Ejemplo n.º 2
0
 public BorrowManager(IBorrowService service, IMapper mapper, IStudentService studentService,
                      IDepartmentService departmentService, IAdminService adminService, IBookService bookService, IReservationService reservationService)
 {
     _service            = service;
     _mapper             = mapper;
     _studentService     = studentService;
     _departmentService  = departmentService;
     _adminService       = adminService;
     _bookService        = bookService;
     _reservationService = reservationService;
 }
 public FriendController(IFriendService friendService, IReviewService reviewService, IBorrowService borrowService)
 {
     _friendService = friendService;
     _reviewService = reviewService;
     _borrowService = borrowService;
 }
Ejemplo n.º 4
0
 public BorrowController(IBorrowService borrowService,
                         IBookService bookService)
 {
     this._borrowService = borrowService;
     this._bookService   = bookService;
 }
Ejemplo n.º 5
0
 public BorrowsController(IBorrowService borrowService, ICommandDispatcher commandDispatcher)
     : base(commandDispatcher)
 {
     _borrowService = borrowService;
 }
 public BorrowController(IBorrowService borrowService)
 {
     _borrowService = borrowService;
 }
Ejemplo n.º 7
0
 public BorrowController(IBorrowService borrowService, LibraryDbContext dbContext, IMapper mapper)
 {
     _borrowService = borrowService;
     _dbContext     = dbContext;
     _mapper        = mapper;
 }
Ejemplo n.º 8
0
 public BookController(IBookService _BookService, IBorrowService _BorrowService)
 {
     this._BookService   = _BookService;
     this._BorrowService = _BorrowService;
 }