5、操作类代理

using System;
using System.Collections.Generic;
using System.Text;
using Factory;
using Model;
using ServerDAL;

namespace BLL
{
    public class UsersBLL
    {
        public static UserDAL u = Factory.DtatAccess.CreateDAL("UserDAL") as UserDAL;
        public IList<Users> All(string name)
        {
           return  u.All(name);
        }
    }
}

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-17
  • 2022-12-23
猜你喜欢
  • 2021-12-10
  • 2021-06-13
  • 2022-02-07
  • 2022-01-22
  • 2022-01-04
  • 2021-11-25
  • 2021-08-25
相关资源
相似解决方案