public string ActualizarInventario(decimal id, TR_inventario inventario)
 {
     try
     {
         var resultado = procedimiento.ExisteInventario(id);
         if (resultado == true)
         {
             procedimiento.ActualizarInventario(id, inventario);
             return("OK");
         }
         return("El código del inventario no arrojó resultados");
     }
     catch (NullReferenceException)
     {
         return("Todos los campos deben estar completos");
     }
     catch (InvalidCastException)
     {
         return("El tipo de formato enviado no corresponde");
     }
     catch (DbUpdateException)
     {
         return("El código del inventario ingresado ya se encuentra registrado");
     }
     catch (Exception)
     {
         return("Ha ocurrido un error al momento de registrar");
     }
 }
 public string AgregarInventario(TR_inventario inventario)
 {
     try
     {
         procedimiento.AgregarInventario(inventario);
         return("OK");
     }
     catch (NullReferenceException)
     {
         return("Todos los campos deben estar completos");
     }
     catch (InvalidCastException)
     {
         return("El tipo de formato enviado no corresponde");
     }
     catch (DbUpdateException)
     {
         return("El código del inventario ingresado ya se encuentra registrado");
     }
     catch (Exception)
     {
         return("Ha ocurrido un error al momento de registrar");
     }
 }