示例#1
0
        public IEnumerable <Projeto> Get()
        {
            if (this.isAdmin())
            {
                return(_service.ListarTodos());
            }

            return(_userprojeto_service.ListarTodos(this.userId())
                   .Select(item => item.Projeto));
        }