public void Update(Wsmy383 entity)
 {
     _context.Wsmy383.Update(entity);
 }
        public async Task Delete(int id)
        {
            Wsmy383 entity = await GetById(id);

            _context.Wsmy383.Remove(entity);
        }
 public async Task Add(Wsmy383 entity)
 {
     await _context.Wsmy383.AddAsync(entity);
 }