Ejemplo n.º 1
0
        // GET: Lead
        public ActionResult Index()
        {
            var leads = _leadService.GetBySpecification(new LeadSpecification()
            {
                Take = int.MaxValue
            });

            return(View(leads));
        }