public async Task <IEnumerable <Station> > GetAllJoined() { try { IStationDao stationDao = GetIStationDao(); return(await stationDao.FindJoinedAsync()); } catch (Exception) { return(null); } }