private DataTable ObtenerClaves(string IDGen, bool EsEmpleado, string BusqProd)
 {
     try
     {
         Producto_Negocio ProdNeg = new Producto_Negocio();
         return(ProdNeg.ObteneClavesXIDEmpleadoIDSucursal(Comun.Conexion, EsEmpleado, IDGen, BusqProd));
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }