Esempio n. 1
0
        static IAgreementDAL UserRepository(string layer, string layerBLL)
        {
            IAgreementDAL PersonDAL = (IAgreementDAL)Factory.CreatInstance(layerBLL, layer, new object[] { });

            return(PersonDAL);
        }
Esempio n. 2
0
 public BLL(string layer, string layerBLL)
 {
     DALref = UserRepository(layer, layerBLL);
 }