public CreateModel(RazorPagesLesson.Models.StudentsContext context) { _context = context; GenderItems = Enum.GetValues(typeof(GenderType)) .Cast <GenderType>() .Select(o => new SelectListItem { Value = ((int)o).ToString(), Text = o.ToString() }) .ToList(); }
public DetailsModel(RazorPagesLesson.Models.StudentsContext context) { _context = context; }
public IndexModel(RazorPagesLesson.Models.StudentsContext context) { _context = context; }