Exemplo n.º 1
0
 public CustomersController(BaseService service, IMapper mapper)
     : base(service, mapper, "Customers", "customerId")
 {
     _service = service;
     _mapper  = mapper;
 }
Exemplo n.º 2
0
 public BooksController(BaseService service, IMapper mapper)
     : base(service, mapper, "Books", "bookId")
 {
     _service = service;
     _mapper  = mapper;
 }
Exemplo n.º 3
0
 public BorrowingsController(BaseService service, IMapper mapper)
     : base(service, mapper, "Borrowings", "borrowingId")
 {
     _service = service;
     _mapper  = mapper;
 }