Esempio n. 1
0
        public IEnumerable <PlanillaRemuneracion> GetPlanillaPeriodo(int Anio, int Mes)
        {
            IEnumerable <PlanillaRemuneracion> resultado = new List <PlanillaRemuneracion>();

            try
            {
                IPlanillaEngine planillaEngine = _BusinessEngineFactory.GetBusinessEngine <IPlanillaEngine>();
                resultado = planillaEngine.GetPlanillaNormalPorPeriodo(Anio, Mes);
            }
            catch (InvalidOperationException Ex)
            {
                throw Ex;
            }

            return(resultado);
        }