/// <summary>
 /// Raises the <see cref="StartPageLogic.NewResponse"/> event.
 /// </summary>
 /// <param name="tagUid">The response to be included in the event data.</param>
 private void RaiseNewTagEvent(TagUid tagUid)
 {
     if (TagPresent != null)
     {
         TagPresent(this, new TagPresentEventArgs(tagUid));
     }
 }
 public async Task SendTagToServerAsync(TagUid tag)
 {
     await SendAuthRequestAsync(new AuthRequest()
     {
         TagId = tag.ToString(), CarPlate = "", ParkingCNPJ = "46.451.585/0001-67"
     });
 }
 public bool WriteBlock(byte blockNumber, TagUid uid, byte[] data, byte[] keyA = null, byte[] keyB = null)
 {
     return(true);
 }
 public bool SelectTag(TagUid uid)
 {
     return(true);
 }
 public byte[] ReadBlock(byte blockNumber, TagUid uid, byte[] keyA = null, byte[] keyB = null)
 {
     return(null);
 }
 public TagPresentEventArgs(TagUid tagUid)
 {
     TagUid = tagUid;
 }