Пример #1
0
        public static DTO.DetalleAnualDto ObtenerDetallePernoctacion(string anio, string tipo, string codproyecto, string codnino)
        {
            BLL.Impl.DetalleAnualImpl detalleAnuamImpl = new BLL.Impl.DetalleAnualImpl();
            var result = detalleAnuamImpl.ObtenerDetalleAnualPernoctacion(tipo, anio, Int32.Parse(codproyecto), Int32.Parse(codnino));

            return(result);
        }
Пример #2
0
        public static DTO.DetalleAnualDto ObtenerDetalleVisitas(string tipo, string codproyecto, string codnino)
        {
            BLL.Impl.DetalleAnualImpl detalleAnuamImpl = new BLL.Impl.DetalleAnualImpl();
            var anio   = DateTime.Now.Year;
            var result = detalleAnuamImpl.ObtenerDetalleAnualVisita(tipo, anio.ToString(), Int32.Parse(codproyecto), Int32.Parse(codnino));

            return(result);
        }