public void AddReservation(ReservationAcceptedEvent reservation) { var partitionKey = reservation.Date.Date.ToString("yyyyMMdd"); var rowKey = reservation.Id.ToString(); if (this.IsReplay(partitionKey, rowKey)) { return; } var r = new ReservationTableEntity { PartitionKey = reservation.Date.Date.ToString("yyyyMMdd"), RowKey = reservation.Id.ToString(), Date = reservation.Date, Name = reservation.Name, Email = reservation.Email, Quantity = reservation.Quantity }; this.context.AddReservation(r); this.context.SaveChanges(); }
public void AddReservation(ReservationTableEntity reservation) { this.AddObject(ReservationContext.tableName, reservation); }