public async Task RemoveParticipante(RemovePartcipanteEventoRequest request)
        {
            var query = $@"
                        DELETE 
                            valor_participante 
                        WHERE 
                            id_evento = {request.IdEvento} 
                            AND 
                            id_participante = {request.IdParticipante}";

            _sqlHelper.QuerySingle <int>(query);

            return;
        }
Beispiel #2
0
 public async Task RemoverParticipante(RemovePartcipanteEventoRequest request)
 {
     await _eventoParticipanteService.RemoverParticipante(request);
 }