예제 #1
0
        public Object GetCompetidoresGrupos(int jornadaId, int categoriaId)
        {
            Datos data = new Datos();

            data.data = GolfCompetidorJornada.GetCompetidoresGrupos(jornadaId, categoriaId);
            return(data);
        }
예제 #2
0
        public HttpResponseMessage GetDetalleJornada(int jornadaId, int categoriaId, int eventoId)
        {
            var    dtDatosJornada = GolfCompetidorJornada.GetCompetidoresGrupos(jornadaId, categoriaId);
            string pathResources  = WebApiApplication.ApplicationResources;
            var    path           = GolfCompetidorReport.ReporteJornadaInscritos(dtDatosJornada, pathResources, eventoId, categoriaId, jornadaId);

            return(getReportePDF(path));
        }