public static DataTable GetDataTableCopy() { string cmd = "select * from Copy"; return(DAO.GetDataTable(cmd)); }
internal static DataTable GetDataTableReserve(int borrowerNumber) { string cmd = "SELECT top 1 * FROM [Reservation] where borrowerNumber = " + borrowerNumber + " and status = 'R' order by ID desc"; return(DAO.GetDataTable(cmd)); }