Exemplo n.º 1
0
        public bool Update(Evaluation e)
        {
            EvaluationInterface ti = de.CreateEvaluation();

            ti.Update(e);
            return(de.SaveChange());
        }
Exemplo n.º 2
0
        public bool Delete(Evaluation g)
        {
            EvaluationInterface ti = de.CreateEvaluation();

            ti.Del(g);
            return(de.SaveChange());
        }
Exemplo n.º 3
0
        public List <Evaluation> Select()
        {
            EvaluationInterface ti = de.CreateEvaluation();

            return(ti.Select());
        }