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