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