Ejemplo n.º 1
0
 public DataTable GetPrintRpt01Detl(ArrayList ParameterList)
 {
     try
     {
         DBO.PrintRpt01 db = new PrintRpt01(ref USEDB);
         return db.GetRptDetl(ParameterList[0].ToString());
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
Ejemplo n.º 2
0
 public DataTable GetPrintRpt01Main(string MainID)
 {
     try
     {
         DBO.PrintRpt01 db = new DBO.PrintRpt01(ref USEDB);
         return db.GetRPTMain(MainID);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }