Esempio 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));
        }
Esempio n. 2
0
 public UnitOfWork()
 {
     _context = new SeraFoodCtx();
 }