Example #1
0
        //Phương thức thêm dữ liệu vào bảng Khoa
        public bool InsertUser(UsersDTO dtoUsers)
        {
            dalUsers = new UsersDAL();

            try
            {
                return dalUsers.InsertUser(dtoUsers);
            }
            catch (Exception)
            {
                throw;
            }
        }