public async Task Add(Wpry240 entity)
 {
     try
     {
         await _context.Wpry240.AddAsync(entity);
     }
     catch (Exception ex)
     {
         var msg = ex.InnerException.Message;
         throw;
     }
 }
        public async Task Delete(string cotizacion, int renglon, int propuesta, int parte)
        {
            Wpry240 entity = await GetByCotizacionRenglonPropuestaParte(cotizacion, renglon, propuesta, parte);

            _context.Wpry240.Remove(entity);
        }
 public void Update(Wpry240 entity)
 {
     _context.Wpry240.Update(entity).Property(x => x.Recnum).IsModified = false;;
 }