public IActionResult Types() { TypesView model = new TypesView(); model.Types = _calendarService.GetAllCalendarItemTypesForDepartment(DepartmentId); return(View(model)); }
public async Task <IActionResult> Types() { TypesView model = new TypesView(); model.Types = await _calendarService.GetAllCalendarItemTypesForDepartmentAsync(DepartmentId); return(View(model)); }