Ejemplo n.º 1
0
        public ViewResult Orders()
        {
            countService = new CountService();

            var vegetarians  = countService.GetNumberOfPeopleVegetarian();
            var isGoingByBus = countService.GetNumberOfPeopleGoingByBus();

            var mod = new OrderModel(vegetarians, isGoingByBus);

            return(View(mod));
        }