Exemplo n.º 1
0
        //
        // GET: /Roles/
        public ActionResult Index()
        {
            var context = new SeraFoodCtx();

            var allRoles = context.Roles.Select(role => new RoleViewModel
            {
                RoleName = role.Name
            });

            return(View(allRoles));
        }
Exemplo n.º 2
0
 public UnitOfWork()
 {
     _context = new SeraFoodCtx();
 }