public void Update(Wsmy515 entity) { _context.Wsmy515.Update(entity).Property(x => x.Id).IsModified = false; }
public async Task Delete(string cotizacion, int renglon, int propuesta) { Wsmy515 entity = await GetByCotizacionRenglonPropuesta(cotizacion, renglon, propuesta); _context.Wsmy515.Remove(entity); }
public async Task Add(Wsmy515 entity) { await _context.Wsmy515.AddAsync(entity); }