public VueApiTestController(IPreferencesDAO dao, IUserDAO userDao, IUserSavedListsDAO listsDAO, IPasswordHasher passwordHasher, IRestaurantDAO yelpDAO)
 {
     this.prefDAO        = dao;
     this.userDAO        = userDao;
     this.yelpDAO        = yelpDAO;
     this.listsDAO       = listsDAO;
     this.passwordHasher = passwordHasher;
 }
Beispiel #2
0
 public MockRestaurantDAO(IPreferencesDAO Pdao)
 {
     this.Pdao = Pdao;
 }