public async Task <IActionResult> GetParticipantByEmailData(string emailver)
 => new ObjectResult(await m_participantService.FindParticipantByEmail(emailver));
Exemple #2
0
 public async Task <IActionResult> GetParticipantByEmailData(string emailver)
 {
     logToConsole.Stamp().Action().WriteLine();
     return(new ObjectResult(await m_participantService.FindParticipantByEmail(emailver)));
 }