Example #1
0
        public int InsertTeacher(Teacher teacher)
        {
            try
            {
                //Xử lý chính(nghiệp vụ)

                //Xử lý dữ liệu
                return(teacherDAO.InsertTeacher(teacher));
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }