public List <int> GetAvailableCarsByDates(DateTime fromDate, DateTime toDate)
        {
            CarMethods carService = new CarMethods();

            return(carService.GetAllAvailable(fromDate, toDate));
        }