WIP query functs
This commit is contained in:
@@ -24,7 +24,6 @@ class Park_time {
|
||||
Park_time(int c_id, int s_id);
|
||||
Park_time(int id_, int customer_id_, int spot_id_, int start_,
|
||||
int duration_);
|
||||
~Park_time();
|
||||
int id;
|
||||
int customer_id;
|
||||
int spot_id;
|
||||
|
14
headers/Query.h
Normal file
14
headers/Query.h
Normal file
@@ -0,0 +1,14 @@
|
||||
#ifndef QUERY_H
|
||||
#define QUERY_H
|
||||
#pragma once
|
||||
|
||||
#include "Park_spot.h"
|
||||
|
||||
#include <exception>
|
||||
#include <array>
|
||||
|
||||
vector<Park_time> query_Parktime_for_customer(int cid);
|
||||
vector<Customer> query_customer_with_name(string name);
|
||||
|
||||
|
||||
#endif // CUSTOMER_H
|
Reference in New Issue
Block a user