Ejemplo n.º 1
0
 private AccountService()
 {
     _daoManager = ServiceConfig.GetInstance().DaoManager;
     _accountDao = _daoManager.GetDao(typeof(IAccountDao)) as IAccountDao;
 }
Ejemplo n.º 2
0
 public AccountService(DaoManager daoManager)
 {
     _daoManager = daoManager;
     _accountDao = _daoManager.GetDao(typeof(IAccountDao)) as IAccountDao;
 }