Answer to Question #207461 in C++ for Gali

Question #207461

Railway management system project with 4 classes


1
Expert's answer
2021-06-16T01:00:57-0400
#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;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS