예제 #1
0
        public IActionResult _calender(int year, int month, string cathegory)
        {
            var model = service.GetAllDays(year, month, cathegory);

            // Show empty form
            return(PartialView(model));
        }