Example #1
0
 /// <summary>
 /// 传入users实体类,执行SQL ,返回受影响的行数
 /// </summary>
 public static int Add(users regu) => UserService.Add(regu);
Example #2
0
        public test()
        {
            UserService n = new UserService();

            n.Add(T);
        }
Example #3
0
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public int Add(User model)
 {
     return(dal.Add(model));
 }