Exemple #1
0
        public async Task InitializeAsync()
        {
            Events = await Database.GetScheduleEventsAsync();

            /* Sort the events by begin time               */
            Events.Sort
            (
                (x, y) => x.BeginTime.CompareTo(y.BeginTime)
            );

            SortEvents();
        }