protected void Page_Load(object sender, EventArgs e) { try { string usuarioLogado = Convert.ToString(Session["NomeUsuarioLogado"]); lblUsuarioLogado.Text = usuarioLogado; ProjetoDAL pd = new ProjetoDAL(); if (pd == null) { lblMensagem.Text = "Lista Vazia."; } else { gridProjetos.DataSource = pd.ListarProj(Convert.ToInt32(Session["CodigoUsuarioLogado"])); //Popular a grid gridProjetos.DataBind(); //Exibe a grid } } catch (Exception ex) { lblMensagem.Text = ex.Message; } }
public ProfessorController(IESContext context) { this._context = context; projetoDAL = new ProjetoDAL(context); professorDAL = new ProfessorDAL(context); }
public AlunoController(IESContext context) { this._context = context; projetoDAL = new ProjetoDAL(context); alunoDAL = new AlunoDAL(context); }
public int RemoveProject(ProjetoDTO _projeto) { ProjetoDAL cmd = new ProjetoDAL(); return(cmd.UpdateData(_projeto)); }
public List <ProjetoDTO> GetDataWithParam(ProjetoDTO _projeto) { ProjetoDAL cmd = new ProjetoDAL(); return(cmd.GetDataInDataBase(_projeto)); }
public ProjetoController(IESContext context) { _context = context; projetoDAL = new ProjetoDAL(context); }