Exemplo n.º 1
0
        public async Task <bool> CreateAsync(Role role)
        {
            _dbContext.Add(role);
            await _dbContext.SaveChangesAsync();

            return(true);
        }
Exemplo n.º 2
0
        public async Task <bool> CreateAsync(Category category)
        {
            await _dbContext.AddAsync(category);

            await _dbContext.SaveChangesAsync();

            return(true);
        }
        public async Task <bool> CreateAsync(Product product)
        {
            await _dbContext.Products.AddAsync(product);

            await _dbContext.SaveChangesAsync();

            return(true);
        }
Exemplo n.º 4
0
        public async Task <IActionResult> Create([Bind("Id,Name")] Role role)
        {
            if (ModelState.IsValid)
            {
                _context.Add(role);
                await _context.SaveChangesAsync();

                return(RedirectToAction(nameof(Index)));
            }
            return(View(role));
        }
Exemplo n.º 5
0
        public async Task <IActionResult> Create([Bind("Id,FullName,Password,Email,Phone,RoleId")] User user)
        {
            if (ModelState.IsValid)
            {
                _context.Add(user);
                await _context.SaveChangesAsync();

                return(RedirectToAction(nameof(Index)));
            }
            ViewData["RoleId"] = new SelectList(_context.Roles, "Id", "Id", user.RoleId);
            return(View(user));
        }
        public async Task <IActionResult> Create([Bind("Id,Name,Price,Status,Image,CategoryId")] Product product)
        {
            if (ModelState.IsValid)
            {
                _context.Add(product);
                await _context.SaveChangesAsync();

                return(RedirectToAction(nameof(Index)));
            }
            ViewData["CategoryId"] = new SelectList(_context.Categories, "Id", "Id", product.CategoryId);
            return(View(product));
        }
Exemplo n.º 7
0
        public async Task <bool> CreateAsync(User user)
        {
            var role = _dbContext.Roles.Where(r => r.Name == "User").FirstOrDefault();

            user.Role = role;

            var res = _dbContext.Users.Where(x => x.Email == user.Email).FirstOrDefault();

            if (res == null && user.Password != null)
            {
                user.Password = MD5Hash(user.Password);
                _dbContext.Users.Add(user);
                await _dbContext.SaveChangesAsync();

                return(true);
            }
            return(false);
        }