public async Task <IEnumerable <Station> > GetStationByCreatorId(int creator)
 {
     try {
         IStationDao stationDao = GetIStationDao();
         return(await stationDao.FindByCreatorIdAsync(creator));
     }
     catch (Exception) {
         return(null);
     }
 }