Beispiel #1
0
 private AccountService()
 {
     _daoManager = ServiceConfig.GetInstance().DaoManager;
     _accountDao = _daoManager.GetDao(typeof(IAccountDao)) as IAccountDao;
 }
 public AccountService(DaoManager daoManager)
 {
     _daoManager = daoManager;
     _accountDao = _daoManager.GetDao(typeof(IAccountDao)) as IAccountDao;
 }