public ManagingLibraryController(IBookIssueService bookIssueService, IReturnBookService returnBookService) { _bookIssueService = bookIssueService; _returnBookService = returnBookService; }
public ReturnBookController(IReturnBookService returnBookService, IMapper mapper, IUriService uriService) { _returnBookService = returnBookService; _mapper = mapper; _uriService = uriService; }