示例#1
0
 public async Task <long> GetNumberOfStations()
 {
     try
     {
         return(await stationDao.GetTotalNumberOfStationsAsync());
     }
     catch (Common.Dal.Ado.MySqlException ex)
     {
         throw new BusinessSqlException(ex.Message, ex.InnerException);
     }
 }