public List <Projeto> Get() { if (this.isAdmin()) { return(_service.projetoService.ListarTodos()); } else { return(_service.ListarTodos(this.userId()).Select(up => up.Projeto).ToList()); } }
public IEnumerable <Projeto> Get() { if (this.isAdmin()) { return(_service.ListarTodos()); } return(_userprojeto_service.ListarTodos(this.userId()) .Select(item => item.Projeto)); }