Пример #1
0
 public ChoresMenuCLI(IUsersDAO usersDAO, IChoresDAO choresDAO, IPayoutDAO payoutDAO)
 {
     this.usersDAO  = usersDAO;
     this.choresDAO = choresDAO;
     this.payoutDAO = payoutDAO;
 }
Пример #2
0
 public ChoresServiceImpl(IChoresDAO choresDAO)
 {
     _choresDAO = choresDAO;
 }