public async Task <ActionResult <int> > GetLotsCount(int id)
        {
            var result = await _lotService.GetLotsCountByCategoryId(id);

            return(Ok(result));
        }