Example #1
0
 public static string GroupsLinkForCourse(this HtmlHelper helper,
                                          string courseTC)
 {
     return(helper.ActionLinkImageEx <GroupController>(
                gc => gc.List(new GroupFilter {
         CourseTC = courseTC
     }, 1),
                Urls.Main("ico_timetable.gif"), "Расписание всех групп",
                new { title = "Расписание всех групп" }));
 }