示例#1
0
 public void Update(Wsmy501 entity)
 {
     _context.Wsmy501.Update(entity).Property(x => x.Id).IsModified = false;
 }
示例#2
0
        public async Task Delete(string id)
        {
            Wsmy501 entity = await GetByCotizacion(id);

            _context.Wsmy501.Remove(entity);
        }
示例#3
0
 public async Task Add(Wsmy501 entity)
 {
     await _context.Wsmy501.AddAsync(entity);
 }