示例#1
0
 public BookLendingApiController(IBookLendingService bookLendingService, IBookService bookService)
 {
     this._bookLendingService = bookLendingService;
     this._bookService        = bookService;
 }
 public BookLendingController(IBookLendingService service, IMapper mapper)
 {
     this.service = service;
     this.mapper  = mapper;
 }