// GET /api/cars public PaginatedDto <Car> Get(PaginatedRequestCommand cmd) { return(_carsCtx.GetAll(cmd.Page, cmd.Take).ToPaginatedDto()); }