Example #1
0
 public void Update(Wsmy406 entity)
 {
     _context.Wsmy406.Update(entity);
 }
Example #2
0
        public async Task Delete(short id)
        {
            Wsmy406 entity = await GetById(id);

            _context.Wsmy406.Remove(entity);
        }
Example #3
0
 public async Task Add(Wsmy406 entity)
 {
     await _context.Wsmy406.AddAsync(entity);
 }