コード例 #1
0
        static IAgreementDAL UserRepository(string layer, string layerBLL)
        {
            IAgreementDAL PersonDAL = (IAgreementDAL)Factory.CreatInstance(layerBLL, layer, new object[] { });

            return(PersonDAL);
        }
コード例 #2
0
 public BLL(string layer, string layerBLL)
 {
     DALref = UserRepository(layer, layerBLL);
 }