// // GET: /Roles/ public ActionResult Index() { var context = new SeraFoodCtx(); var allRoles = context.Roles.Select(role => new RoleViewModel { RoleName = role.Name }); return(View(allRoles)); }
public UnitOfWork() { _context = new SeraFoodCtx(); }