public ActionResult CerrarPeriodo(int gestion, int mes)
        {
            var resultado = periodosPlanillasManager.CerrarPeriodoPlanilla(gestion, mes);

            var fechaProceso        = new DateTime(gestion, mes + 2, 1).AddDays(-1);
            var resultadoParametros = planillasManager.SetFechaProceso(fechaProceso);

            var resultadoNuevoPeriodo = periodosPlanillasManager.CrearPeriodoPlanilla(gestion, fechaProceso.Month);

            var resultadoSueldos = planillasManager.GenerarPlanillaSueldo();
            var resultadoRcIva   = planillasManager.GenerarPlanillaRcIva();

            return(RedirectToAction("Gestion"));
        }