public IEnumerable <CellView> Get(string collegeName)
 {
     return
         (_repository.QueryCollegeCells(_cellRepository, collegeName)
          .Select(x => new CellView(x, _eNodebRepository)));
 }