예제 #1
0
        public bool Update(Evaluation e)
        {
            EvaluationInterface ti = de.CreateEvaluation();

            ti.Update(e);
            return(de.SaveChange());
        }
예제 #2
0
        public bool Delete(Evaluation g)
        {
            EvaluationInterface ti = de.CreateEvaluation();

            ti.Del(g);
            return(de.SaveChange());
        }
예제 #3
0
        public List <Evaluation> Select()
        {
            EvaluationInterface ti = de.CreateEvaluation();

            return(ti.Select());
        }