Ejemplo n.º 1
0
        private void PopulateSlotsDropDownList(int?selectedSlot = null)
        {
            var slots = _repository.PopulateSlotsDropDownList();

            ViewBag.RoleId = new SelectList(slots.AsNoTracking(), "SlotId", "SlotName", selectedSlot);
        }