CreatedDate is meant to be the date and time at which a Quiz was created?
LastModifiedDate is meant to be the date and time at which a Quiz was modified for the last time?
If these are true, then when you update a Quiz (Quiz Controler, Post Method, related to issue #17 ) do you set the LastModifiedDate to the CreatedDate? (see code below)
// properties set from server-side
quiz.LastModifiedDate = quiz.CreatedDate;
Shouldn't it be more like the following?
// properties set from server-side
quiz.LastModifiedDate = DateTime.Now;
Hi,
Just to make sure:
If these are true, then when you update a Quiz (Quiz Controler, Post Method, related to issue #17 ) do you set the LastModifiedDate to the CreatedDate? (see code below)
Shouldn't it be more like the following?