cl_frmland_bll.cs

来自「用三层架构写的用户登录的简单例子 适合C#初学者」· CS 代码 · 共 26 行

CS
26
字号
using System;
using System.Collections.Generic;
using System.Text;
using DAl;
using Model;
using System.Data;

namespace Bll
{
    public class cl_frmLand_Bll
    {
        public bool Yanzheng(Cl_stuland stuland)
        {
            Cl_stuland_DAl stu = new Cl_stuland_DAl();
            if (stu.SelectDataset(stuland) == true)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?