public static IEnumerable GetSalesPerson(DateTime fechaInicio, DateTime fechaFin)
        {
            ReportModel rm = new ReportModel();

            return(rm.GetAllAsignacionTareas(fechaInicio, fechaFin).AsParallel());
            //return (basdat.AsignacionTareas.Select(x => new { x.NegId, x.IdEstado, x.IdEtapa, x.Usuario }));
        }