public bool RemoveStudent(StudentDAO student)
        {
            bool removed = db.RemoveStudent(DataMapper.MapToStudent(student));

            return(removed);
        }
        public bool InsertStudent(StudentDAO student)
        {
            bool inserted = db.InsertStudent(DataMapper.MapToStudent(student));

            return(inserted);
        }