/*
  * Obtiene las características por el nombre de la variedad
  */
 public DataSet GetVariedadReporte(string codigo_variedad)
 {
     try
     {
         DataAccess.DataBase bd  = new DataAccess.DataBase();
         DataSet             set = new DataSet();
         string salida           = "variedadReporte";//comando sql
         set = bd.SetSP(salida, "@codigo_variedad", DbType.String, codigo_variedad);
         return(set);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message, ex.InnerException);
     }
 }
Example #2
0
 /*
  * Obtiene el reporte de licencias
  */
 public DataSet GetLicenciaReporte(int id_produccion)
 {
     try
     {
         DataAccess.DataBase bd  = new DataAccess.DataBase();
         DataSet             set = new DataSet();
         string salida           = "licenciaReporte";//comando sql
         set = bd.SetSP(salida, "@id_produccion", DbType.Int32, id_produccion);
         return(set);
     }
     catch (Exception ex)
     {
         throw new Exception(ex.Message, ex.InnerException);
     }
 }