コード例 #1
0
        public void Test_DBB_GetByID()
        {
            IUserAccountDAL test_dal = new AccountDataBridge();
            var             r        = test_dal.Get(new WL.Account.Core.DB.AccountDBModel()
            {
                AccountID = "7"
            });

            Console.WriteLine(r);

            IAccountBLL ubll = new AccountBLL();
            var         u    = ubll.Get(new WL.Account.Core.Business.AccountModel()
            {
                AccountID = "7"
            });

            Console.WriteLine(u);
        }