[HttpGet("all")] //06. URL bilgimizi giriyoruz http:/192.168.1.5:50500/api/ParticipantAppRest/all public async Task <IActionResult> GetAllParticipants() => new ObjectResult(await m_participantService.GetAllParticipant());
public async Task <IActionResult> GetAllParticipants() { logToConsole.Stamp().Action().WriteLine(); return(new ObjectResult(await m_participantService.GetAllParticipant())); }