public async Task <IActionResult> GetParticipantByEmailAndParticipate(string emailby, bool isParticipate)
 => new ObjectResult(await m_participantService.FindParticipantByEmailAndParticipate(emailby, isParticipate));
Exemplo n.º 2
0
 public async Task <IActionResult> GetParticipantByEmailAndParticipate(string emailby, bool isParticipate)
 {
     logToConsole.Stamp().Action().WriteLine();
     return(new ObjectResult(await m_participantService.FindParticipantByEmailAndParticipate(emailby, isParticipate)));
 }