public UserLogIn MatchUser(string UserId, string Password)
 {
     return(_userLogInRepository.GetAll().Where(u => u.UserId == UserId && u.Password == Password).FirstOrDefault());
 }
 public IEnumerable <Place> GetAllPlaces()
 {
     return(_placeRepository.GetAll());
 }
Esempio n. 3
0
 public IEnumerable <Country> GetAllCountries()
 {
     return(_countryRepository.GetAll());
 }