コード例 #1
0
        protected async override Task LoadAction()
        {
            boundriesSelector.Select(selectedMonth.Year, selectedMonth.Month,
                                     out DateTime min, out DateTime max);

            Days = (await daysRepo.GetOrderedDaysWithItems(x => x.Day.Date >= min && x.Day.Date <= max))
                   .Select(x => new TodoDayPresenter(selectedMonth.Month, x));
        }