Ejemplo n.º 1
0
 public static DataSet GetContinent_ID(string cont)
 {
     return(OleDbHelper.fill("select * from Direction where Continent='" + cont + "'", "Direction"));
 }
Ejemplo n.º 2
0
 public static DataSet GetContinent(int directID)
 {
     return(OleDbHelper.fill(string.Format("select * from Direction where DirectionID={0}", directID), "Direction"));
 }
Ejemplo n.º 3
0
 public static DataSet GetPayment(int voucherID)
 {
     return(OleDbHelper.fill(string.Format("select * from Payment where VoucherID= {0}", voucherID), "Payment"));
 }
Ejemplo n.º 4
0
 public static DataSet GetLogPas(string login, int password)
 {
     return(OleDbHelper.fill("select * from LogPas where Login='******' and Password ="******"LogPas"));//
 }
Ejemplo n.º 5
0
 public static DataSet GetAll()
 {
     return(OleDbHelper.fill("select * from Payment", "Payment"));
 }