return the new Id of the created time log event.

tidied code too.
This commit is contained in:
chris.watts90@outlook.com 2017-02-08 22:26:33 +00:00
parent 526aca3d58
commit 34b427293a

View File

@ -20,38 +20,12 @@ namespace WindowsDataCenter
[Route("")] [Route("")]
public IHttpActionResult PostData([FromBody] CardData cData) public IHttpActionResult PostData([FromBody] CardData cData)
{ {
//var cardIdQuery = _connection.Query<CardUniqueId>( int logId;
// "select * from CardUniqueIds where CardUId = ?", _repo.LogEventTime(new Identifier {UniqueId = cData.CardUId}, out logId);
// cData.CardUId);
//var userId = 0;
//if (!cardIdQuery.Any())
//{
// //new card, create it!
// userId = _connection.Insert(new CardUniqueId()
// {
// UserId_FK = -1,
// CardUId = cData.CardUId
// });
//}
//else
//{
// userId = cardIdQuery.First().UserId_FK;
//}
//var timeLog = new TimeLog
//{
// SwipeEventDateTime = DateTime.UtcNow,
// UserId_FK = userId
//};
//var tLogId = _connection.Insert(timeLog);
//TODO: TEST
_repo.LogEventTime(new Identifier {UniqueId = cData.CardUId});
return return
ResponseMessage(new HttpResponseMessage(HttpStatusCode.OK) ResponseMessage(new HttpResponseMessage(HttpStatusCode.OK)
{ {
Content = new StringContent("TODO: return ID") Content = new StringContent(logId.ToString())
}); });
} }