//public IList<Pollster> GetActiveEncuestadores(Guid idAccount) //{ // IList<Pollster> model = new List<Pollster>(); // model = _personDao.GetActiveIMEI(idAccount); // return model; //} public IList <Pollster> GetEncuestadoresbyIMEI(Guid idAccount) { IList <Pollster> model = new List <Pollster>(); model = _personDao.GetActiveIMEI(idAccount); return(model); }