/SchedulerPageViewModel.cs Secret
Last active
December 13, 2019 06:05
Star
You must be signed in to star a gist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class SchedulerPageViewModel | |
{ | |
private DateTime appointmentStartTime = new DateTime(2019, 12, 9, 12, 0, 0); | |
public IList<Meeting> Meetings { get; set; } | |
public SchedulerPageViewModel() | |
{ | |
Meetings = new List<Meeting> | |
{ | |
new Meeting("General Meeting", "Online", appointmentStartTime), | |
new Meeting("Release Retrospective", "Office", appointmentStartTime.AddDays(1).AddHours(-3)), | |
new Meeting("Sprint Meeting", "Online", appointmentStartTime.AddDays(2).AddHours(2)), | |
new Meeting("Release Planning", "Online", appointmentStartTime.AddDays(1).AddHours(-2)), | |
new Meeting("General Meeting", "Office",appointmentStartTime.AddDays(1).AddHours(1)), | |
new Meeting("Customer Meeting", "Online", appointmentStartTime.AddDays(2)), | |
new Meeting("Sprint Meeting", "Office", appointmentStartTime.AddDays(3).AddHours(4)), | |
}; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment