Added ability to store creator, updater, date of create and date of edit on entities- columns for this added to Voucher and CampData.

Removed permission check from Service::loadById- caused access violation when user had not have read permission.
This commit is contained in:
2017-08-21 14:16:43 +02:00
parent eff4190c99
commit 836521e533
11 changed files with 176 additions and 4 deletions
+5
View File
@@ -5,6 +5,11 @@ System::System()
}
System::~System()
{
}
int System::id() const
{
return m_id;
+1
View File
@@ -11,6 +11,7 @@ class CORESHARED_EXPORT System
{
public:
System();
virtual ~System();
int id() const;
void setId(int id);