Exemplo n.º 1
0
        public async Task Update(UserDTO userDTO)
        {
            var user = new User
            {
                Id    = userDTO.Id,
                Name  = userDTO.Name,
                Email = userDTO.Email,
                Role  = "User"
            };

            _context.Entry(user).State = EntityState.Modified;
            await _context.SaveChangesAsync();
        }
Exemplo n.º 2
0
 public async Task Update(RxPrice rxPrice)
 {
     _context.Entry(rxPrice).State = EntityState.Modified;
     await _context.SaveChangesAsync();
 }
Exemplo n.º 3
0
 public async Task Update(Vendor vendor)
 {
     _context.Entry(vendor).State = EntityState.Modified;
     await _context.SaveChangesAsync();
 }