public MainLotListing FilterLots([FromServices] LotService lotService) { var filter = new LotFilter { isAllowedIndividual = true, isAllowedJuridic = true, from = 0, to = 2 }; return(lotService.Filter(filter)); }