public List <Time> List() { using (var dao = new TimeRepository()) { return(dao.List().OrderBy(x => x.Nome).ToList()); } }