I have a timetable for student so they can attend to course on the week. And I don't know how I should build my ViewModel.
I decided this :
class CourseTableViewModel
{
CourseTableHeaderViewModel[] Headers;
CourseTableRowViewModel[] Rows;
}
class CourseTableRowViewModel
{
int HourStart;
CourseTableCellViewModel[] Cells;
}
class CourseTableHeaderViewModel
{
DateTime Date;
}
class CourseTableCellViewModel
{
CourseViewModel[] Courses;//null if no course at this time
}
but for me it seems like to heavy for my view model. Maybe I should only send the CourseViewModel[] and then on my cshtml do all the table/row/cell work.
Does the viewmodel should really look like my view ?
EDIT : I'll show my data as a Time Table with the days of the week as headers, and a row foreach hour of the day. If a course take 2 hour it'll occupy 2 rows. There'll be a button "Attend" or "Cancel" on each course's cell.
PS : I know about jquery fullcalendar, but I'm just trying to learn how to build my viewmodel here.