mirror of
https://gitea.msk.dinamika-avia.ru/Constanta-Design/RRJServer.git
synced 2026-03-28 19:55:48 +03:00
39 lines
815 B
C++
39 lines
815 B
C++
#ifndef DATABASEINSTRUCTORS_H
|
|
#define DATABASEINSTRUCTORS_H
|
|
|
|
#include <QList>
|
|
#include <QObject>
|
|
#include "instructorsAndTrainees_global.h"
|
|
#include "instructor.h"
|
|
#include "databaselms.h"
|
|
|
|
class DataBaseInstructors : QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DataBaseInstructors(DataBaseLMS* dbLMS);
|
|
~DataBaseInstructors();
|
|
|
|
bool AuthorizationInstructor(QString login, QString password);
|
|
bool deAuthorizationInstructor(QString login);
|
|
|
|
QList<Instructor> getListInstructors();
|
|
Instructor getInstructor(int id);
|
|
|
|
int newInstructor();
|
|
int deleteInstructor(int id);
|
|
int editInstructor(Instructor instructor);
|
|
|
|
bool isAdmin(int id);
|
|
bool isArchived(int id);
|
|
|
|
bool existLogin(QString login);
|
|
|
|
private:
|
|
bool adminMode;
|
|
DataBaseLMS* dbLMS;
|
|
};
|
|
|
|
#endif // DATABASEINSTRUCTORS_H
|