Railway management system project with 4 classes
#include <iostream>
using namespace std;
class Employee {
private:
long long int id;
string name;
string mobile;
string email;
string username;
string password;
srting address;
public:
Employee()
{}
void addEmployee()
{}
void editEmployee()
{}
void deleteEmployee()
{}
void updateEmployee()
{}
void saveEmployee()
{}
auto searchEmployee()
{}
};
class Custormer {
private:
long long int id;
string name;
string mobile;
string email;
string username;
string password;
srting address;
public:
Custormer()
{}
void addCustormer()
{}
void editCustormer()
{}
void deleteCustormer()
{}
void updateCustormer()
{}
void saveCustormer()
{}
auto searchCustormer()
{}
};
class Train {
private:
long long int id;
string number;
int number;
int seat_number;
string ticket;
string type;
string description;
public:
Train()
{}
void addTrains()
{}
void editTrains()
{}
void deleteTrain()
{}
void updateTrain()
{}
void saveTrain()
{}
};
class Station {
private:
long long int id;
string name;
string type;
string description;
public:
Station()
{}
void addStation()
{}
void editStation()
{}
void deletStation()
{}
void updateStation()
{}
void saveStation()
{}
auto searchStation()
{}
};
int main()
{
return 0;
}
Comments
Leave a comment