public RestaurantCacheService(IRestaurantService restaurantService) { this.restaurantCache = new RestaurantCache(restaurantService); }
public HomeController(ILogger <HomeController> logger, RestaurantCacheService restaurantCacheService) { this.logger = logger; this.restaurantCache = restaurantCacheService.restaurantCache; }